Skip to content

Commit d4c0801

Browse files
committed
Drop Python 3.13 and remove redundant install
Update GitHub Actions workflow (.github/workflows/tests.yml): remove Python 3.13 from the test matrix so CI runs on 3.10–3.12, and remove a redundant pip install line for setuptools/wheel. Tests now rely on a single pip install for the package plus test extras.
1 parent 8c52905 commit d4c0801

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
python-version: ["3.10", "3.11", "3.12", "3.13"]
9+
python-version: ["3.10", "3.11", "3.12"]
1010
name: Test pyDataverse
1111
env:
1212
PORT: 8080
@@ -28,7 +28,6 @@ jobs:
2828

2929
- name: Install Python Dependencies
3030
run: |
31-
uv pip install --system setuptools wheel
3231
uv pip install --system ".[tests,mcp]"
3332
3433
- name: Run tests

0 commit comments

Comments
 (0)