We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d9dcd38 + 914efb0 commit b8c647bCopy full SHA for b8c647b
1 file changed
.github/workflows/python-test.yml
@@ -37,7 +37,16 @@ jobs:
37
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
38
- name: Check with mypy
39
run: |
40
- pip install pygame # Needed for examples
+ if [[ "${{ matrix.python-version }}" = "3.11" ]]
41
+ then
42
+ # --pre needed for Python 3.11 which doesn't have wheels (and may not
43
+ # be fully supported) in version 2.1.2. Once 2.1.3 is released this
44
+ # can be removed. Due to https://github.com/pygame/pygame/issues/3572
45
+ # we can't apply this for all Python versions.
46
+ pip install --pre pygame # Needed for examples
47
+ else
48
+ pip install pygame # Needed for examples
49
+ fi
50
mypy pythonosc examples
51
- name: Test with pytest
52
0 commit comments