Skip to content

Commit f47e8cd

Browse files
committed
CI: Add newer Pythons to the CI config
1 parent b8b09b6 commit f47e8cd

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ python:
44
- '3.5'
55
- '3.6'
66
- '3.7'
7+
- '3.8'
8+
- '3.9'
9+
- '3.10-dev'
710
dist: xenial
811
sudo: required
912
addons:

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,9 @@ def libraries(self, value):
126126
'Programming Language :: Python :: 3.5',
127127
'Programming Language :: Python :: 3.6',
128128
'Programming Language :: Python :: 3.7',
129+
'Programming Language :: Python :: 3.8',
130+
'Programming Language :: Python :: 3.9',
131+
'Programming Language :: Python :: 3.10',
129132
'Programming Language :: Python :: Implementation :: CPython',
130133
'Topic :: Software Development :: Libraries',
131134
'Topic :: System :: Networking',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py35,py36,py37
2+
envlist = py27,py35,py36,py37,py38,py39,py310
33
[testenv]
44
commands=
55
python tests/parse_ifconfig.py -v

0 commit comments

Comments
 (0)