Skip to content

Commit 1ec38c7

Browse files
authored
fix actions python version (#60)
* fix actions python version * fix format * exclude test 3.14
1 parent 1526ea1 commit 1ec38c7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/actions/setup-python-env/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ runs:
2626
cache-suffix: ${{ matrix.python-version }}
2727

2828
- name: Install Python dependencies
29-
run: uv sync --frozen
29+
run: uv sync --frozen --python=${{ matrix.python-version }}
3030
shell: bash

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
strategy:
3131
matrix:
32-
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
32+
python-version: ["3.10", "3.11", "3.12", "3.13"]
3333
fail-fast: false
3434
defaults:
3535
run:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ python =
88
3.11: py311
99
3.12: py312
1010
3.13: py313
11-
3.14: py314
11+
; 3.14: py314
1212

1313
[testenv]
1414
passenv = PYTHON_VERSION

0 commit comments

Comments
 (0)