Skip to content

Commit

Permalink
Remove an unnecessary dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
thombashi committed Dec 12, 2020
1 parent 3f9fa2e commit 1e7f2a6
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ def get_release_command_class() -> Dict[str, setuptools.Command]:
tests_requires = [line.strip() for line in f if line.strip()]


SETUPTOOLS_REQUIRES = ["setuptools>=38.3.0"]
DATETIME_REQUIRES = [
"python-dateutil>=2.8.0,<3.0.0",
"pytz>=2018.9",
Expand All @@ -67,8 +66,7 @@ def get_release_command_class() -> Dict[str, setuptools.Command]:
"Tracker": "{:s}/issues".format(REPOSITORY_URL),
},
python_requires=">=3.5",
install_requires=SETUPTOOLS_REQUIRES + install_requires,
setup_requires=SETUPTOOLS_REQUIRES,
install_requires=install_requires,
extras_require={"datetime": DATETIME_REQUIRES, "test": tests_requires + DATETIME_REQUIRES},
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 1e7f2a6

Please sign in to comment.