Skip to content

Commit

Permalink
Merge pull request #627 from lazka/ci-update-pypy
Browse files Browse the repository at this point in the history
CI: Update to PyPy 3.9
  • Loading branch information
lazka committed Sep 3, 2023
2 parents 38695eb + 63b6516 commit 38200ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, '3.10', 3.11, '3.12', 'pypy-3.8']
python-version: [3.8, 3.9, '3.10', 3.11, '3.12', 'pypy-3.9']
exclude:
# hangs
- os: macos-latest
python-version: pypy-3.8
python-version: pypy-3.9
- os: windows-latest
python-version: pypy-3.8
python-version: pypy-3.9
include:
- os: ubuntu-latest
pip-cache: ~/.cache/pip
Expand Down Expand Up @@ -59,8 +59,8 @@ jobs:
poetry run coverage run --branch setup.py test
poetry run coverage xml -i
- name: Run mypy
# mypy fails to install
if: matrix.python-version != 'pypy-3.8'
# mypy is too slow there
if: matrix.python-version != 'pypy-3.9'
run: |
poetry run mypy .
- name: Run flake8
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ fuzzing-dev = ["python-afl"]
pytest = "^7.1.2"
hypothesis = "^6.50.1"
flake8 = "^5.0.4"
mypy = {version = "1.3.0", markers = "platform_python_implementation != 'PyPy'"}
mypy = "1.3.0"
coverage = "^7.2.5"
Sphinx = "^4.0.0"
sphinx-rtd-theme = "^1.0.0"
Expand Down

0 comments on commit 38200ec

Please sign in to comment.