Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit de8a67d

Browse files
committed
Removed 2.7 from setup.py and added 3.5 to tox.ini .
1 parent 7debc90 commit de8a67d

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

setup.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,7 @@ def run_tests(self):
3737
sys.exit(errno)
3838

3939

40-
# Python 2.7 and later ship with importlib and argparse
41-
if sys.version_info[0] == 2 and sys.version_info[1] == 6:
42-
extra_install_requires = ["importlib", "argparse"]
43-
else:
44-
extra_install_requires = []
40+
extra_install_requires = []
4541

4642
with open('src/oidcmsg/__init__.py', 'r') as fd:
4743
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
@@ -60,7 +56,6 @@ def run_tests(self):
6056
classifiers=[
6157
"Development Status :: 4 - Beta",
6258
"License :: OSI Approved :: Apache Software License",
63-
"Programming Language :: Python :: 2.7",
6459
"Programming Language :: Python :: 3.4",
6560
"Programming Language :: Python :: 3.5",
6661
"Programming Language :: Python :: 3.6",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,34,36},docs,quality
2+
envlist = py{34,35,36,37},docs,quality
33

44
[testenv]
55
setenv =

0 commit comments

Comments
 (0)