We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7eef0e commit d8676ffCopy full SHA for d8676ff
1 file changed
.github/workflows/python-test.yml
@@ -40,7 +40,8 @@ jobs:
40
# --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
+ # Version pin to 2.1.3-dev4 needed for Python 3.7 due to https://github.com/pygame/pygame/issues/3572
44
+ pip install --pre pygame==2.1.3-dev4 # Needed for examples
45
mypy pythonosc examples
46
- name: Test with pytest
47
run: |
0 commit comments