Skip to content

Commit aa3a9d7

Browse files
committed
tox.ini: update Python interpreters in envlist
Python 3.7 and earlier are now EOL, and 3.11 is the latest.
1 parent 8eb9cef commit aa3a9d7

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.travis.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ virt: lxd
33
language: python
44
matrix:
55
include:
6-
- python: 3.7
7-
env: TOX_ENV=py37
86
- python: 3.8
97
env: TOX_ENV=py38
8+
- python: 3.9
9+
env: TOX_ENV=py39
10+
- python: 3.10
11+
env: TOX_ENV=py39
12+
- python: 3.11
13+
env: TOX_ENV=py311
1014
install:
1115
- pip install tox
1216
script:

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
[tox]
55
minversion = 1.8
6-
envlist = py37,py38,flake8
6+
envlist = py38,py39,py310,py311,flake8
77
skip_missing_interpreters = True
88

99
[testenv]

0 commit comments

Comments
 (0)