Skip to content

Commit a7eef0e

Browse files
committed
Fix install of pygame on Python 3.11
See pygame/pygame#3522 (comment).
1 parent d9dcd38 commit a7eef0e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/python-test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ jobs:
3737
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3838
- name: Check with mypy
3939
run: |
40-
pip install pygame # Needed for examples
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
4144
mypy pythonosc examples
4245
- name: Test with pytest
4346
run: |

0 commit comments

Comments
 (0)