Skip to content

Commit 12219eb

Browse files
committed
Drop Python 3.8 support - source changes
1 parent afd791e commit 12219eb

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ matrix:
66
# We run tests on the latest supported version of Python first.
77
# This is where additional tests are run so we give it more time.
88
- python: "3.12"
9-
- python: "3.8"
109
- python: "3.9"
1110
- python: "3.10"
1211
- python: "3.11"

build/templates/setup.py.mako

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ setup(
7373
"Operating System :: Microsoft :: Windows",
7474
"Operating System :: POSIX",
7575
"Programming Language :: Python :: 3",
76-
"Programming Language :: Python :: 3.8",
7776
"Programming Language :: Python :: 3.9",
7877
"Programming Language :: Python :: 3.10",
7978
"Programming Language :: Python :: 3.11",

build/templates/tox-system_tests.ini.mako

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# test suite on all supported python versions. To use it, "pip install tox"
2727
# and then run "tox -c tox-system_tests.ini" from the driver directory. (generated/${module_name})
2828
[tox]
29-
envlist = ${wheel_env}py{38,39,310,311,312}-${module_name}-system_tests, py312-${module_name}-coverage
29+
envlist = ${wheel_env}py{39,310,311,312}-${module_name}-system_tests, py312-${module_name}-coverage
3030
skip_missing_interpreters=True
3131
ignore_basepython_conflict=True
3232
# We put the .tox directory outside of the Jenkins workspace so that it isn't wiped with the rest of the repo
@@ -85,7 +85,7 @@ deps =
8585
${module_name}-coverage: coverage
8686

8787
depends =
88-
${module_name}-coverage: py{38,39,310,311,312}-${module_name}-system_tests
88+
${module_name}-coverage: py{39,310,311,312}-${module_name}-system_tests
8989
% if uses_other_wheel:
9090
${module_name}-system_tests: ${wheel_env}
9191
% endif

tox-travis.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# tox-travis.ini will have pyXX-clean and all pyXX-installers in the default envlist, while the developer tox.ini
88
# does not have clean and only has one pyXX-installers
99
# Uncomment this line for tox.ini
10-
# envlist = py312-build_test,py312-codegen,py312-installers,py{38,39,310,311,312}-test,py312-flake8,py312-docs,py312-pkg
10+
# envlist = py312-build_test,py312-codegen,py312-installers,py{39,310,311,312}-test,py312-flake8,py312-docs,py312-pkg
1111
# Uncomment this line for tox-travis.ini
12-
envlist = py312-clean,py312-build_test,py312-codegen,py{38,39,310,311,312}-installers,py{38,39,310,311,312}-test,py312-flake8,py312-docs,py312-pkg
12+
envlist = py312-clean,py312-build_test,py312-codegen,py{39,310,311,312}-installers,py{39,310,311,312}-test,py312-flake8,py312-docs,py312-pkg
1313
skip_missing_interpreters=True
1414
ignore_basepython_conflict=True
1515
skipsdist = true

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
# tox-travis.ini will have pyXX-clean and all pyXX-installers in the default envlist, while the developer tox.ini
88
# does not have clean and only has one pyXX-installers
99
# Uncomment this line for tox.ini
10-
envlist = py312-build_test,py312-codegen,py312-installers,py{38,39,310,311,312}-test,py312-flake8,py312-docs,py312-pkg
10+
envlist = py312-build_test,py312-codegen,py312-installers,py{39,310,311,312}-test,py312-flake8,py312-docs,py312-pkg
1111
# Uncomment this line for tox-travis.ini
12-
# envlist = py312-clean,py312-build_test,py312-codegen,py{38,39,310,311,312}-installers,py{38,39,310,311,312}-test,py312-flake8,py312-docs,py312-pkg
12+
# envlist = py312-clean,py312-build_test,py312-codegen,py{39,310,311,312}-installers,py{39,310,311,312}-test,py312-flake8,py312-docs,py312-pkg
1313
skip_missing_interpreters=True
1414
ignore_basepython_conflict=True
1515
skipsdist = true

0 commit comments

Comments
 (0)