Skip to content

Commit 9c76585

Browse files
codewizdaveclaude
andcommitted
fix: use Python 3.13 in CI workflows
Python 3.14 is not available in GitHub Actions yet. Switched to Python 3.13 which is the latest stable version. Local development can still use 3.14, but CI will use 3.13. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 7f40721 commit 9c76585

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache-dependency-glob: "pyproject.toml"
2323

2424
- name: Set up Python
25-
run: uv python install 3.14
25+
run: uv python install 3.13
2626

2727
- name: Install dependencies
2828
run: uv sync --all-extras

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache-dependency-glob: "pyproject.toml"
2323

2424
- name: Set up Python
25-
run: uv python install 3.14
25+
run: uv python install 3.13
2626

2727
- name: Install dependencies
2828
run: uv sync --all-extras

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache-dependency-glob: "pyproject.toml"
2323

2424
- name: Set up Python
25-
run: uv python install 3.14
25+
run: uv python install 3.13
2626

2727
- name: Install dependencies
2828
run: uv sync --all-extras

.github/workflows/typecheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
cache-dependency-glob: "pyproject.toml"
2323

2424
- name: Set up Python
25-
run: uv python install 3.14
25+
run: uv python install 3.13
2626

2727
- name: Install dependencies
2828
run: uv sync --all-extras

0 commit comments

Comments
 (0)