Skip to content

Commit f5373f8

Browse files
packaging: Use PEP 621
1 parent 9343669 commit f5373f8

File tree

5 files changed

+430
-338
lines changed

5 files changed

+430
-338
lines changed

.github/workflows/constraints.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
pip==24.3.1
2-
poetry==1.8.5
2+
poetry==2.0.0
3+
poetry-dynamic-versioning==1.5.0
4+
poetry-plugin-export==1.8.0
35
nox==2024.10.9
46
nox-poetry==1.0.3

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,13 @@ jobs:
3333
test:
3434
runs-on: ubuntu-latest
3535
env:
36-
NOXPYTHON: ${{ matrix.python-version }}
36+
NOXFORCEPYTHON: ${{ matrix.python-version }}
3737
NOXSESSION: tests
3838
PIP_CONSTRAINT: ${{ github.workspace }}/.github/workflows/constraints.txt
3939
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1"
4040
strategy:
41+
fail-fast: false
42+
max-parallel: 2
4143
matrix:
4244
python-version:
4345
- "3.9"
@@ -67,6 +69,7 @@ jobs:
6769
- name: Install Poetry
6870
run: |
6971
pipx install poetry
72+
pipx inject poetry poetry-plugin-export
7073
poetry --version
7174
poetry self show plugins
7275

noxfile.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
raise SystemExit(dedent(message)) from None
1919

2020
python_versions = [
21-
"3.14",
2221
"3.13",
2322
"3.12",
2423
"3.11",

0 commit comments

Comments
 (0)