Skip to content

Commit 9ae7819

Browse files
committed
Adjust min py version and requirements
1 parent 7d6e063 commit 9ae7819

File tree

3 files changed

+4
-8
lines changed

3 files changed

+4
-8
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ docs/_build
1515
.DS_Store
1616
pytestdebug.log
1717
.idea
18+
coverage.xml

requirements-test.txt

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
mock
22
vcrpy==1.10.3
3-
# FIXME remove the constraint after resolving
4-
# https://github.com/pytest-dev/pytest/issues/2966
5-
pytest<3.3.0
6-
pytest-cov<2.6.0
3+
pytest
4+
pytest-cov
75
pytest-catchlog
86
responses==0.10.6

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,13 @@
2828
package_data={'scrapinghub': ['VERSION']},
2929
install_requires=['requests>=1.0', 'retrying>=1.3.3', 'six>=1.10.0'],
3030
extras_require={'msgpack': mpack_required},
31+
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*',
3132
classifiers=[
3233
'Development Status :: 5 - Production/Stable',
3334
'License :: OSI Approved :: BSD License',
3435
'Operating System :: OS Independent',
3536
'Programming Language :: Python',
36-
'Programming Language :: Python :: 2',
3737
'Programming Language :: Python :: 2.7',
38-
'Programming Language :: Python :: 3',
39-
'Programming Language :: Python :: 3.3',
40-
'Programming Language :: Python :: 3.5',
4138
'Programming Language :: Python :: 3.6',
4239
'Programming Language :: Python :: 3.7',
4340
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)