Skip to content

Commit ab0fca6

Browse files
committed
no longer necessary since we won't run ci on py2.7
1 parent 711cacc commit ab0fca6

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ stone >= 2
55
# Other dependencies for development
66
ply
77
pytest
8-
pytest-runner
8+
pytest-runner == 5.3.2
99
sphinx
1010
twine
1111
setuptools; python_version>="3.12"

setup.py

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,6 @@
3131
'setuptools',
3232
]
3333

34-
setup_requires = [
35-
# Pin pytest-runner to 5.2.0, since 5.3.0 uses `find_namespaces` directive, not supported in
36-
# Python 2.7
37-
'pytest-runner == 5.2.0',
38-
]
39-
4034
# WARNING: This imposes limitations on test/requirements.txt such that the
4135
# full Pip syntax is not supported. See also
4236
# <http://stackoverflow.com/questions/14399534/>.
@@ -51,7 +45,6 @@
5145
name='dropbox',
5246
version=version,
5347
install_requires=install_reqs,
54-
setup_requires=setup_requires,
5548
tests_require=test_reqs,
5649
packages=['dropbox'],
5750
package_data={'dropbox': ['trusted-certs.crt']},
@@ -72,7 +65,7 @@
7265
'License :: OSI Approved :: MIT License',
7366
'Operating System :: OS Independent',
7467
'Programming Language :: Python',
75-
'Programming Language :: Python :: 2.7',
68+
'Programming Language :: Python :: 2.7', # untested
7669
'Programming Language :: Python :: 3.8',
7770
'Programming Language :: Python :: 3.9',
7871
'Programming Language :: Python :: 3.10',

0 commit comments

Comments
 (0)