We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69af3f0 commit e8bbbe6Copy full SHA for e8bbbe6
.github/workflows/tests.yaml
@@ -27,7 +27,7 @@ jobs:
27
- "3.14"
28
include:
29
- os: Ubuntu
30
- python-version: pypy-3.10
+ python-version: pypy-3.11
31
fail-fast: false
32
defaults:
33
run:
@@ -90,4 +90,7 @@ jobs:
90
run: poetry run python -m pytest -p no:sugar --integration -q tests/integration
91
92
- name: Run mypy
93
+ # mypy 1.19 introduces a dependency on librt, which does not support PyPy
94
+ # It is recommended to run mypy only on CPython, see https://github.com/mypyc/librt/issues/16
95
+ if: ${{ !startsWith(matrix.python-version, 'pypy') }}
96
run: poetry run mypy
0 commit comments