We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4b4759 commit 85633cfCopy full SHA for 85633cf
2 files changed
.github/workflows/codspeed.yml
@@ -26,7 +26,7 @@ jobs:
26
strategy:
27
fail-fast: false
28
matrix:
29
- python-version: ['3.13', pypy3.11]
+ python-version: [py3.13, pypy3.11]
30
31
steps:
32
- uses: actions/checkout@v6
@@ -43,4 +43,4 @@ jobs:
43
run: |
44
pip install --upgrade pip
45
pip install --upgrade tox
46
- tox -e benchmark-py${{ matrix.python-version }}
+ tox -e benchmark-${{ matrix.python-version }}
tox.ini
@@ -52,9 +52,9 @@ commands =
52
python -m build --sdist
53
twine check dist/*
54
55
-[testenv:benchmark-{py3.13,pypy3.11}]
+[testenv:benchmark-{3.13,pypy3.11}]
56
basepython =
57
- py3.13: python3.13
+ 3.13: python3.13
58
pypy3.11: pypy3.11
59
deps =
60
{[testenv]deps}
0 commit comments