Skip to content

Commit 6fb3136

Browse files
authored
pin deno to v2.5.5 (#33)
1 parent ff3ebcf commit 6fb3136

File tree

5 files changed

+125
-89
lines changed

5 files changed

+125
-89
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: denoland/setup-deno@v2
2727
with:
28-
deno-version: v2.x
28+
deno-version: v2.5.x
2929

3030
- uses: actions/cache@v4
3131
with:
@@ -41,7 +41,7 @@ jobs:
4141
strategy:
4242
fail-fast: false
4343
matrix:
44-
python-version: ["3.10", "3.11", "3.12", "3.13"]
44+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
4545
env:
4646
UV_PYTHON: ${{ matrix.python-version }}
4747
runs-on: ubuntu-latest
@@ -52,7 +52,7 @@ jobs:
5252
enable-cache: true
5353
- uses: denoland/setup-deno@v2
5454
with:
55-
deno-version: v2.x
55+
deno-version: v2.5.x
5656
- run: uv sync
5757
- run: make test
5858
env:

mcp_run_python/deno/deno.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mcp_run_python/deno/src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export async function main() {
4848
`\
4949
Invalid arguments: ${args.join(' ')}
5050
51-
Usage: deno ... deno/main.ts [stdio|streamable_http|streamable_http_stateless|install_deps|noop]
51+
Usage: deno ... deno/main.ts [stdio|streamable_http|streamable_http_stateless|example|noop]
5252
5353
options:
5454
--port <port> Port to run the HTTP server on (default: 3001)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ classifiers = [
1818
"Programming Language :: Python :: 3.11",
1919
"Programming Language :: Python :: 3.12",
2020
"Programming Language :: Python :: 3.13",
21+
"Programming Language :: Python :: 3.14",
2122
"Intended Audience :: Developers",
2223
"Intended Audience :: Information Technology",
2324
"Intended Audience :: System Administrators",

0 commit comments

Comments
 (0)