Skip to content

Commit 9c201ec

Browse files
committed
chore: use minumun version
1 parent 0540e7a commit 9c201ec

2 files changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Build
1212
runs-on: ubuntu-24.04
1313
env:
14-
PYTHON_VERSION: 3.13
14+
PYTHON_VERSION: 3.10
1515
UV_VERSION: 0.11.13
1616

1717
steps:
@@ -48,8 +48,6 @@ jobs:
4848
fail-fast: false
4949
matrix:
5050
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
51-
env:
52-
UV_PYTHON: ${{ matrix.python-version }}
5351

5452
steps:
5553
- name: Checkout repository
@@ -60,11 +58,7 @@ jobs:
6058
with:
6159
enable-cache: true
6260
version: ${{ env.UV_VERSION }}
63-
64-
- name: Setup python
65-
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # 6.1.0
66-
with:
67-
python-version: "${{ matrix.python-version }}"
61+
python-version: ${{ matrix.python-version }}
6862

6963
- name: Install dependencies
7064
run: uv sync --locked --all-extras --dev

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: Deploy to package index
1010
runs-on: ubuntu-24.04
1111
env:
12-
PYTHON_VERSION: 3.13
12+
PYTHON_VERSION: 3.10
1313
UV_VERSION: 0.11.13
1414
UV_PUBLISH_TOKEN: ${{ secrets.PYPI_PASSWORD }}
1515
REPOSITORY_URL: ${{ secrets.PYPI_PUBLISH_URL }}
@@ -23,6 +23,7 @@ jobs:
2323
- name: Install uv
2424
uses: astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
2525
with:
26+
enable-cache: true
2627
version: ${{ env.UV_VERSION }}
2728

2829
- name: Setup Python

0 commit comments

Comments
 (0)