Skip to content

Commit 15f4ec2

Browse files
committed
fix: update Python version condition in CI workflow
1 parent 22110ad commit 15f4ec2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
pip install pytest
4141
pytest
4242
- run: python setup.py test
43-
if: ${{ !contains(fromJson('["3.9", "3.10", "3.11", "3.12","latest"]'), matrix.python-version) }}
43+
if: ${{ !contains(fromJson('["3.9", "3.10", "3.11", "3.12", "latest"]'), matrix.python-version) }}
4444
build-pypy:
4545
name: Build PyPy
4646
timeout-minutes: 10
@@ -68,4 +68,4 @@ jobs:
6868
pip install pytest
6969
pytest
7070
- run: pypy setup.py test
71-
if: ${{ !contains(fromJson('["3.9", "3.10", "3.11", "3.12","latest"]'), matrix.python-version) }}
71+
if: ${{ !contains(fromJson('["3.9", "3.10", "3.11", "3.12", "latest"]'), matrix.python-version) }}

0 commit comments

Comments
 (0)