We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9dcd38 commit a7eef0eCopy full SHA for a7eef0e
1 file changed
.github/workflows/python-test.yml
@@ -37,7 +37,10 @@ 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
+ # --pre needed for Python 3.11 which doesn't have wheels (and may not be
41
+ # fully supported) in version 2.1.2. Once 2.1.3 is released the --pre
42
+ # can be removed.
43
+ pip install --pre pygame # Needed for examples
44
mypy pythonosc examples
45
- name: Test with pytest
46
0 commit comments