Skip to content

Commit d8676ff

Browse files
committed
Pin a specific pygame version for Python 3.7
Works around pygame/pygame#3572
1 parent a7eef0e commit d8676ff

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/python-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
# --pre needed for Python 3.11 which doesn't have wheels (and may not be
4141
# fully supported) in version 2.1.2. Once 2.1.3 is released the --pre
4242
# can be removed.
43-
pip install --pre pygame # Needed for examples
43+
# 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
4445
mypy pythonosc examples
4546
- name: Test with pytest
4647
run: |

0 commit comments

Comments
 (0)