Don't run pypy tests on Windows

This commit is contained in:
Orsiris de Jong 2024-01-01 22:32:25 +01:00
parent 095dd14079
commit 1b2936c15c

View file

@ -15,7 +15,8 @@ jobs:
matrix:
os: [windows-latest]
# As of 2023/08/30, we have removed python 2.7 since github actions won't provide it anymore
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12", 'pypy-3.6', 'pypy-3.7', 'pypy-3.8', 'pypy-3.10']
# Don't test on pypy since we don't have pywin32
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3