Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 40bc397

Browse files
j1figmattrobenolt
authored andcommitted
added py37 and py38 to tox. (ua-parser#77)
* added python 3.7 to tox envs. * added python 3.8 to tox envs. * marked 3.7 and 3.8 as officially supported. * [extra] added explicit basepython 2.7 to `docs` as running it locally complained that there was no base python.
1 parent 442cf43 commit 40bc397

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,8 @@ class sdist(_sdist):
205205
'Programming Language :: Python :: 3.4',
206206
'Programming Language :: Python :: 3.5',
207207
'Programming Language :: Python :: 3.6',
208+
'Programming Language :: Python :: 3.7',
209+
'Programming Language :: Python :: 3.8',
208210
'Programming Language :: Python :: Implementation :: CPython',
209211
'Programming Language :: Python :: Implementation :: PyPy',
210212
],

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py36, docs, py27-flake8, py36-flake8
2+
envlist = py27, py36, py37, py38, docs, py27-flake8, py36-flake8
33

44
[testenv]
55
deps =
@@ -9,6 +9,7 @@ commands =
99
python ua_parser/user_agent_parser_test.py
1010

1111
[testenv:docs]
12+
basepython = python2.7
1213
deps = docutils
1314
Pygments
1415
commands =

0 commit comments

Comments
 (0)