Skip to content

Commit 92b3ae0

Browse files
dimon222kevin-bates
authored andcommitted
Add test suites for new python versions (#61)
* Remove py2.6 classifier since its not tested * Add new python classifiers
1 parent a31cfa3 commit 92b3ae0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ language: python
44

55
matrix:
66
include:
7+
- python: 3.8
8+
env: TOXENV=py38
9+
- python: 3.7
10+
env: TOXENV=py37
711
- python: 3.6
812
env: TOXENV=py36
913
- python: 3.5

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ def find_version(*file_paths):
4949
'Intended Audience :: Developers',
5050
'License :: OSI Approved :: BSD License',
5151
'Operating System :: OS Independent',
52-
'Programming Language :: Python :: 2.6',
5352
'Programming Language :: Python :: 2.7',
5453
'Programming Language :: Python :: 3.5',
5554
'Programming Language :: Python :: 3.6',
55+
'Programming Language :: Python :: 3.7',
56+
'Programming Language :: Python :: 3.8',
5657
'Topic :: System :: Distributed Computing',
5758
],
5859
)

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,py38
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)