Skip to content

Commit a5cdd60

Browse files
committed
Revert "test using Python 3.13"
This reverts commit 47db719.
1 parent 2055d50 commit a5cdd60

File tree

3 files changed

+29
-32
lines changed

3 files changed

+29
-32
lines changed

.github/workflows/ci-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
matrix:
3434
py-ver-major: [3]
35-
py-ver-minor: [8, 9, 10, 11, 12, 13]
35+
py-ver-minor: [8, 9, 10, 11, 12]
3636
step: [lint, unit, bandit, mypy]
3737

3838
env:

pyproject.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,13 @@ classifiers = [
1616
"Operating System :: MacOS :: MacOS X",
1717
"Operating System :: POSIX",
1818
"Programming Language :: Python",
19+
"programming language :: python :: 3.7",
1920
"Programming Language :: Python :: 3.8",
2021
"Programming Language :: Python :: 3.9",
2122
"Programming Language :: Python :: 3.10",
22-
"Programming Language :: Python :: 3.11",
23-
"Programming Language :: Python :: 3.12",
24-
"Programming Language :: Python :: 3.13",
2523
"Topic :: Software Development :: Libraries :: Python Modules",
2624
]
27-
requires-python = "~=3.8"
25+
requires-python = "~=3.7"
2826
dependencies = [
2927
"connexion[swagger-ui] >= 2.0.2, < 3",
3028
"ruamel.yaml >= 0.15.78",

tox.ini

Lines changed: 26 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
22
envlist =
3-
py3{8,9,10,11,12,13}-lint,
4-
py3{8,9,10,11,12,13}-unit,
5-
py3{8,9,10,11,12,13}-bandit,
6-
py3{8,9,10,11,12,13}-mypy,
3+
py3{8,9,10,11,12}-lint,
4+
py3{8,9,10,11,12}-unit,
5+
py3{8,9,10,11,12}-bandit,
6+
py3{8,9,10,11,12}-mypy,
77
py312-lintreadme,
88
py312-pydocstyle
99
isolated_build = True
@@ -16,49 +16,48 @@ python =
1616
3.10: py310
1717
3.11: py311
1818
3.12: py312
19-
3.13: py313
2019

2120
[testenv]
2221
description =
23-
py3{8,9,10,11,12,13}-unit: Run the unit tests
24-
py3{8,9,10,11,12,13}-lint: Lint the Python code
25-
py3{8,9,10,11,12,13}-bandit: Search for common security issues
26-
py3{8,9,10,11,12,13}-mypy: Check for type safety
22+
py3{8,9,10,11,12}-unit: Run the unit tests
23+
py3{8,9,10,11,12}-lint: Lint the Python code
24+
py3{8,9,10,11,12}-bandit: Search for common security issues
25+
py3{8,9,10,11,12}-mypy: Check for type safety
2726
py312-pydocstyle: docstring style checker
2827
py312-lintreadme: Lint the README.rst->.md conversion
2928

3029
passenv =
3130
CI
3231
GITHUB_*
3332
deps =
34-
py3{8,9,10,11,12,13}-{unit,mypy}: -rrequirements.txt
35-
py3{8,9,10,11,12,13}-{unit,mypy}: -rtest-requirements.txt
36-
py3{8,9,10,11,12,13}-lint: -rlint-requirements.txt
37-
py3{8,9,10,11,12,13}-bandit: bandit
38-
py3{8,9,10,11,12,13}-mypy: -rmypy-requirements.txt
33+
py3{8,9,10,11,12}-{unit,mypy}: -rrequirements.txt
34+
py3{8,9,10,11,12}-{unit,mypy}: -rtest-requirements.txt
35+
py3{8,9,10,11,12}-lint: -rlint-requirements.txt
36+
py3{8,9,10,11,12}-bandit: bandit
37+
py3{8,9,10,11,12}-mypy: -rmypy-requirements.txt
3938

4039
setenv =
41-
py3{8,9,10,11,12,13}-unit: LC_ALL = C.UTF-8
40+
py3{8,9,10,11,12}-unit: LC_ALL = C.UTF-8
4241

4342
commands =
44-
py3{8,9,10,11,12,13}-unit: python -m pip install -U pip setuptools wheel
45-
py3{8,9,10,11,12,13}-unit: make coverage-report coverage.xml PYTEST_EXTRA={posargs}
46-
py3{8,9,10,11,12,13}-bandit: bandit --recursive wes_client wes_service
47-
py3{8,9,10,11,12,13}-lint: make flake8
48-
py3{8,9,10,11,12,13}-lint: make format-check
49-
py3{8,9,10,11,12,13}-mypy: make mypy
43+
py3{8,9,10,11,12}-unit: python -m pip install -U pip setuptools wheel
44+
py3{8,9,10,11,12}-unit: make coverage-report coverage.xml PYTEST_EXTRA={posargs}
45+
py3{8,9,10,11,12}-bandit: bandit --recursive wes_client wes_service
46+
py3{8,9,10,11,12}-lint: make flake8
47+
py3{8,9,10,11,12}-lint: make format-check
48+
py3{8,9,10,11,12}-mypy: make mypy
5049

5150
allowlist_externals =
52-
py3{8,9,10,11,12,13}-lint: flake8
53-
py3{8,9,10,11,12,13}-lint: black
54-
py3{8,9,10,11,12,13}-{mypy,memleak,shellcheck,lint,lintreadme,unit}: make
51+
py3{8,9,10,11,12}-lint: flake8
52+
py3{8,9,10,11,12}-lint: black
53+
py3{8,9,10,11,12}-{mypy,memleak,shellcheck,lint,lintreadme,unit}: make
5554

5655
skip_install =
57-
py3{8,9,10,11,12,13}-lint: true
58-
py3{8,9,10,11,12,13}-bandit: true
56+
py3{8,9,10,11,12}-lint: true
57+
py3{8,9,10,11,12}-bandit: true
5958

6059
extras =
61-
py3{8,9,10,11,12,13}-unit: toil
60+
py3{8,9,10,11,12}-unit: toil
6261

6362
[testenv:py312-pydocstyle]
6463
allowlist_externals = make

0 commit comments

Comments
 (0)