Skip to content

Commit

Permalink
Remove tests_require from setup.py
Browse files Browse the repository at this point in the history
setup.py test has been deprecated with pypa/setuptools#1684 and pypa/setuptools#1878 since setuptools v41.5.0
  • Loading branch information
Harmon758 committed Apr 6, 2022
1 parent ba6e6b1 commit 2870031
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@
with open("README.md") as readme_file:
long_description = readme_file.read()

tests_require = [
"vcrpy>=1.10.3",
]

setup(
name="tweepy",
version=version,
Expand All @@ -42,7 +38,6 @@
"requests>=2.27.0,<3",
"requests-oauthlib>=1.2.0,<2",
],
tests_require=tests_require,
extras_require={
"async": ["aiohttp>=3.7.3,<4"],
"dev": [
Expand All @@ -51,7 +46,7 @@
"tox>=3.21.0",
],
"socks": ["requests[socks]>=2.27.0,<3"],
"test": tests_require,
"test": ["vcrpy>=1.10.3"],
},
test_suite="tests",
keywords="twitter library",
Expand Down

0 comments on commit 2870031

Please sign in to comment.