Skip to content

Commit f6c5041

Browse files
Merge pull request #50 from hroncok/py37
Support and test Python 3.7
2 parents 76a7085 + dfea574 commit f6c5041

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ python:
33
- '2.7'
44
- '3.5'
55
- '3.6'
6-
dist: trusty
6+
- '3.7'
7+
dist: xenial
78
sudo: required
89
addons:
910
apt:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ def libraries(self, value):
124124
'Programming Language :: Python :: 3',
125125
'Programming Language :: Python :: 3.5',
126126
'Programming Language :: Python :: 3.6',
127+
'Programming Language :: Python :: 3.7',
127128
'Programming Language :: Python :: Implementation :: CPython',
128129
'Topic :: Software Development :: Libraries',
129130
'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
2+
envlist = py27,py35,py36,py37
33
[testenv]
44
commands=
55
python tests/parse_ifconfig.py -v

0 commit comments

Comments
 (0)