Skip to content

Commit 314bc16

Browse files
committed
Remove unused dependencies and add support for Python 3.7.
1 parent 3a43132 commit 314bc16

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ def run(self):
4646
cmdclass={'test': PyTest},
4747
tests_require=[
4848
'pytest>=2.0.0',
49-
'six',
5049
'requests'
5150
],
5251
entry_points={
@@ -69,6 +68,8 @@ def run(self):
6968
'Programming Language :: Python :: 3.3',
7069
'Programming Language :: Python :: 3.4',
7170
'Programming Language :: Python :: 3.5',
71+
'Programming Language :: Python :: 3.6',
72+
'Programming Language :: Python :: 3.7',
7273
'Topic :: Software Development :: Testing'
7374
]
7475
)

tests/test_http.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
import gzip
21
import requests
3-
import six
42

53
from pytest_localserver import http, plugin
6-
from pytest_localserver import VERSION
74

85

96
# define test fixture here again in order to run tests without having to

tox.ini

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

55
[tox:hudson]

0 commit comments

Comments
 (0)