Skip to content

Commit a564cb7

Browse files
Workaround for coveralls not supporting python 3.13.
1 parent 40e9181 commit a564cb7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/python-package.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
python -m pip install --upgrade pip
3636
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
3737
if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi
38-
pip install coveralls
38+
if [ "${{ matrix.python-version }}" != "3.13" ]; then # workaround for TheKevJames/coveralls-python#523
39+
pip install coveralls
40+
fi
3941
pip install mypy
4042
python -m pip install --editable .
4143

0 commit comments

Comments
 (0)