Skip to content

Commit c4f15b2

Browse files
committed
chore: remove pdm, min python version to 3.11
Signed-off-by: Daniel Bluhm <[email protected]>
1 parent f078c7d commit c4f15b2

File tree

5 files changed

+987
-926
lines changed

5 files changed

+987
-926
lines changed

.github/workflows/publish.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414
- name: Setup Python
15-
uses: pdm-project/setup-pdm@v4
15+
uses: astral-sh/setup-uv@v4
1616
with:
17-
python-version: 3.9
17+
python-version: "3.11"
1818
cache: true
1919
- name: Install dependencies
20-
run: pdm install
20+
run: uv sync --all-extras
2121
- name: Run pytest
22-
run: pdm run pytest
22+
run: uv run pytest
23+
- name: Build
24+
run: uv build
2325
- name: Publish
24-
run: pdm publish
26+
run: uv publish

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: ["3.9", "3.10", "3.11"]
14+
python-version: ["3.11", "3.12", "3.13"]
1515
steps:
1616
- uses: actions/checkout@v4
17-
- uses: pdm-project/setup-pdm@v4
17+
- uses: astral-sh/setup-uv@v4
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
cache: true
2121
- name: Install dependencies
22-
run: pdm install -G :all
22+
run: uv sync --all-extras
2323
- name: Run pytest
24-
run: pdm run pytest
24+
run: uv run pytest

0 commit comments

Comments
 (0)