Skip to content

Commit 4c960d9

Browse files
committed
Fix the tox-gh configuration
":" != "="
1 parent f37dbcf commit 4c960d9

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- "pypy3.9"
3434
exclude:
3535
- os: macos-latest
36-
python-version: pypy3
36+
python-version: pypy3.9
3737

3838
steps:
3939
- uses: actions/checkout@v4
@@ -45,12 +45,11 @@ jobs:
4545
uses: astral-sh/setup-uv@v3
4646
with:
4747
enable-cache: true
48-
- name: "Install dependencies"
49-
run: |
50-
set -x
51-
uv python install ${{ matrix.python-version }}
5248
- name: "Run tox targets for ${{ matrix.python-version }}"
53-
run: "uvx --with tox-uv --with tox-gh tox"
49+
run: |
50+
uvx --with tox-uv --with tox-gh \
51+
--python ${{ matrix.python-version }} \
52+
tox
5453
5554
- name: Upload coverage data
5655
uses: actions/upload-artifact@v4

tox.ini

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,12 @@ looponfailroots =
1313
# Keep docs in sync with docs env and .readthedocs.yml.
1414
[gh]
1515
python =
16-
3.8: py38, py38-numpy
17-
3.9: py39, py39-numpy
18-
3.10: py310, py310-numpy
19-
3.11: py311, py311-numpy
20-
3.12: py312, py312-numpy, lint, changelog, typing, docs
21-
pypy-2: pypy2
22-
pypy-3: pypy3
16+
3.8 = py38, py38-numpy
17+
3.9 = py39, py39-numpy
18+
3.10 = py310, py310-numpy
19+
3.11 = py311, py311-numpy
20+
3.12 = py312, py312-numpy, lint, changelog, typing, docs
21+
pypy-3 = pypy3
2322

2423

2524
[tox]

0 commit comments

Comments
 (0)