Skip to content

Commit 4c5addf

Browse files
committed
MAINT: Update supported Python versions
1 parent 8620edb commit 4c5addf

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

dev_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ refactordoc
33
sphinx
44
sphinx-rtd-theme
55
wheel
6+
tox

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,11 @@ def write_version_py(filename='haas/_version.py'):
147147
'Programming Language :: Python :: 2.6',
148148
'Programming Language :: Python :: 2.7',
149149
'Programming Language :: Python :: 3',
150+
'Programming Language :: Python :: 3.3',
150151
'Programming Language :: Python :: 3.4',
151152
'Programming Language :: Python :: 3.5',
153+
'Programming Language :: Python :: 3.6',
154+
'Programming Language :: Python :: 3.7',
152155
'Topic :: Software Development',
153156
'Topic :: Software Development :: Testing',
154157
],
@@ -184,5 +187,7 @@ def write_version_py(filename='haas/_version.py'):
184187
':python_version=="3.3"': py33_requires,
185188
':python_version=="3.4"': py34_requires,
186189
':python_version=="3.5"': py34_requires,
190+
':python_version=="3.6"': py34_requires,
191+
':python_version=="3.7"': py34_requires,
187192
},
188193
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26,py27,py33,py34,py35,pypy
2+
envlist = py26,py27,py33,py34,py35,py36,py37,pypy
33

44
[testenv]
55
deps = -rtest_requirements.txt

0 commit comments

Comments
 (0)