We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40e9181 commit a564cb7Copy full SHA for a564cb7
.github/workflows/python-package.yml
@@ -35,7 +35,9 @@ jobs:
35
python -m pip install --upgrade pip
36
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
37
if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
38
- pip install coveralls
+ if [ "${{ matrix.python-version }}" != "3.13" ]; then # workaround for TheKevJames/coveralls-python#523
39
+ pip install coveralls
40
+ fi
41
pip install mypy
42
python -m pip install --editable .
43
0 commit comments