File tree Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Expand file tree Collapse file tree 2 files changed +5
-15
lines changed Original file line number Diff line number Diff line change 2525 - ' 3.10'
2626 - ' 3.11'
2727 - ' 3.12'
28- include :
29- - python-version : ' 3.8'
30- tox_env : py38
31- - python-version : ' 3.9'
32- tox_env : py39
33- - python-version : ' 3.10'
34- tox_env : py310
35- - python-version : ' 3.11'
36- tox_env : py311
37- - python-version : ' 3.12'
38- tox_env : py312
3928
4029 defaults :
4130 run :
6453 FORCE_COLOR : 1
6554 PYTEST_CI_ARGS : --cov-report=xml --cov-report=html --junitxml=test_artifacts/test_report.xml --color=yes
6655 run : |
67- tox -e ${{ matrix.tox_env }}
56+ TOX_ENV=$(echo "py${{ matrix.python-version }}" | tr -d .)
57+ tox -e $TOX_ENV
6858
6959 - name : Upload coverage reports to Codecov
7060 uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ paths.source = [
3636]
3737
3838[tool .mypy ]
39- python_version = " 3.12 "
39+ python_version = " 3.8 "
4040check_untyped_defs = true
4141explicit_package_bases = true
4242namespace_packages = true
@@ -89,7 +89,7 @@ ignore = [
8989 " RUF012" , # Mutable class attributes should be annotated with `typing.ClassVar`
9090]
9191
92- target-version = " py312 "
92+ target-version = " py38 "
9393
9494[tool .ruff .pydocstyle ]
9595convention = " google"
@@ -112,7 +112,7 @@ convention = "google"
112112
113113[tool .pylint ]
114114
115- py-version = " 3.12 "
115+ py-version = " 3.8 "
116116
117117ignore-paths =" tests/input" # Ignore test inputs
118118
You can’t perform that action at this time.
0 commit comments