Skip to content

Commit 25aecfe

Browse files
authored
update to support python 3.6 (#117)
* update to support python 3.6
1 parent 0b9460a commit 25aecfe

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ jobs:
99
python: 3.8
1010
install: pip install -U tox-travis
1111
script: tox
12+
- python: 3.6
13+
install: pip install -U tox-travis
14+
script: tox
15+
- python: 3.7
16+
install: pip install -U tox-travis
17+
script: tox
1218
- python: 3.8
1319
install:
1420
- pip install ./

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
'Intended Audience :: Developers',
2020
'License :: OSI Approved :: MIT License',
2121
'Natural Language :: English',
22+
'Programming Language :: Python :: 3.6',
2223
'Programming Language :: Python :: 3.7',
2324
'Programming Language :: Python :: 3.8'
2425
],

tox.ini

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

44
[travis]
55
python =
66
3.8: py38
7+
3.7: py37
8+
3.6: py36
79

810
[testenv]
911
deps =

0 commit comments

Comments
 (0)