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 25
25
- ' 3.10'
26
26
- ' 3.11'
27
27
- ' 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
39
28
40
29
defaults :
41
30
run :
64
53
FORCE_COLOR : 1
65
54
PYTEST_CI_ARGS : --cov-report=xml --cov-report=html --junitxml=test_artifacts/test_report.xml --color=yes
66
55
run : |
67
- tox -e ${{ matrix.tox_env }}
56
+ TOX_ENV=$(echo "py${{ matrix.python-version }}" | tr -d .)
57
+ tox -e $TOX_ENV
68
58
69
59
- name : Upload coverage reports to Codecov
70
60
uses : codecov/codecov-action@v3
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ paths.source = [
36
36
]
37
37
38
38
[tool .mypy ]
39
- python_version = " 3.12 "
39
+ python_version = " 3.8 "
40
40
check_untyped_defs = true
41
41
explicit_package_bases = true
42
42
namespace_packages = true
@@ -89,7 +89,7 @@ ignore = [
89
89
" RUF012" , # Mutable class attributes should be annotated with `typing.ClassVar`
90
90
]
91
91
92
- target-version = " py312 "
92
+ target-version = " py38 "
93
93
94
94
[tool .ruff .pydocstyle ]
95
95
convention = " google"
@@ -112,7 +112,7 @@ convention = "google"
112
112
113
113
[tool .pylint ]
114
114
115
- py-version = " 3.12 "
115
+ py-version = " 3.8 "
116
116
117
117
ignore-paths =" tests/input" # Ignore test inputs
118
118
You can’t perform that action at this time.
0 commit comments