Skip to content

Commit 83eabc3

Browse files
rhoerbec00kiemon5ter
authored andcommitted
Set supported python versions to py35 py36 py37
1 parent 79abc46 commit 83eabc3

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ install:
1111
- pip install -U tox
1212
matrix:
1313
include:
14-
- python: 3.4.4
15-
env: TOXENV=py34
1614
- python: 3.5
1715
env: TOXENV=py35
16+
- python: 3.6
17+
env: TOXENV=py36
18+
- python: 3.7
19+
env: TOXENV=py37
1820
script:
1921
- tox
2022
deploy:

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131
zip_safe=False,
3232
classifiers=[
3333
"Programming Language :: Python :: 3 :: Only",
34-
"Programming Language :: Python :: 3.4",
34+
"Programming Language :: Python :: 3.5",
35+
"Programming Language :: Python :: 3.6",
36+
"Programming Language :: Python :: 3.7",
3537
],
3638
entry_points={
3739
"console_scripts": ["satosa-saml-metadata=satosa.scripts.satosa_saml_metadata:construct_saml_metadata"]

tox.ini

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

44
[testenv]
55
deps=-rtests/test_requirements.txt

0 commit comments

Comments
 (0)