Skip to content

Commit 63d709b

Browse files
committed
remove lazerbass example to break dependency on pygame
1 parent 3be7d24 commit 63d709b

2 files changed

Lines changed: 2 additions & 132 deletions

File tree

.github/workflows/python-test.yml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -28,26 +28,13 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
python -m pip install flake8 pytest mypy
31-
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3231
- name: Lint with flake8
3332
run: |
3433
# stop the build if there are Python syntax errors or undefined names
3534
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
3635
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
3736
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
3837
- name: Check with mypy
39-
run: |
40-
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
38+
run: mypy pythonosc examples
5139
- name: Test with pytest
52-
run: |
53-
pytest
40+
run: pytest

examples/reaktor_lazerbass.py

Lines changed: 0 additions & 117 deletions
This file was deleted.

0 commit comments

Comments
 (0)