Skip to content

Commit baea13c

Browse files
committed
Add python3.5
1 parent c13dbe6 commit baea13c

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ language: python
22

33
matrix:
44
include:
5+
- python: 3.5
6+
env: TOXENV=py35
57
- python: 3.6
68
env: TOXENV=py36
79
- python: 3.7

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,6 @@ disallow_incomplete_defs = True
1212
disallow_untyped_decorators = True
1313
disallow_untyped_calls = True
1414
disallow_untyped_defs = True
15+
16+
[mypy-tests.*]
17+
ignore_errors = True

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def load_requirements(fname):
3333
'Operating System :: POSIX',
3434
'Programming Language :: Python',
3535
'Programming Language :: Python :: 3',
36+
'Programming Language :: Python :: 3.5',
3637
'Programming Language :: Python :: 3.6',
3738
'Programming Language :: Python :: 3.7',
3839
'Programming Language :: Python :: 3.8',
@@ -51,6 +52,6 @@ def load_requirements(fname):
5152
'jwt-rsa-issue= {}.issue:main'.format(module_name),
5253
]
5354
},
54-
python_requires=">=3.6, <4",
55+
python_requires=">=3.5, <4",
5556
url='https://github.com/mosquito/pyjwt-rsa'
5657
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{6-8}
2+
envlist = py3{5-8}
33

44
[testenv]
55
extras =

0 commit comments

Comments
 (0)