Leave coveralls CI/CD job on Python 3.12 because coveralls 4.0.1 doesn't support Python 3.13

This commit is contained in:
Roman Mogylatov 2024-11-03 23:53:01 -05:00
parent 884956bd03
commit 803d688452
2 changed files with 4 additions and 4 deletions

View File

@ -48,7 +48,7 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- uses: actions/setup-python@v4 - uses: actions/setup-python@v4
with: with:
python-version: 3.13 python-version: 3.12
- run: pip install tox 'cython>=3,<4' - run: pip install tox 'cython>=3,<4'
- run: make cythonize - run: make cythonize
- run: tox -vv - run: tox -vv

View File

@ -26,12 +26,12 @@ python_files = test_*_py3*.py
[testenv:coveralls] [testenv:coveralls]
passenv = GITHUB_*, COVERALLS_*, DEPENDENCY_INJECTOR_* passenv = GITHUB_*, COVERALLS_*, DEPENDENCY_INJECTOR_*
basepython=python3.13 basepython=python3.12 # TODO: Upgrade to version 3.13 is blocked by coveralls 4.0.1 not supporting Python 3.13
deps= deps=
{[testenv]deps} {[testenv]deps}
cython>=3,<4 cython>=3,<4
coverage>=7.6 coverage>=7
coveralls coveralls>=4
commands= commands=
coverage erase coverage erase
coverage run --rcfile=./.coveragerc -m pytest -c tests/.configs/pytest.ini coverage run --rcfile=./.coveragerc -m pytest -c tests/.configs/pytest.ini