File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed
Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ language: python
22
33matrix :
44 include :
5+ - python : 3.5
6+ env : TOXENV=py35
57 - python : 3.6
68 env : TOXENV=py36
79 - python : 3.7
Original file line number Diff line number Diff line change @@ -12,3 +12,6 @@ disallow_incomplete_defs = True
1212disallow_untyped_decorators = True
1313disallow_untyped_calls = True
1414disallow_untyped_defs = True
15+
16+ [mypy-tests.*]
17+ ignore_errors = True
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff line change 11[tox]
2- envlist = py3{6 -8}
2+ envlist = py3{5 -8}
33
44[testenv]
55extras =
You can’t perform that action at this time.
0 commit comments