Skip to content

Commit

Permalink
fix: remove unused future dependency (#173)
Browse files Browse the repository at this point in the history
As far as I can tell, we never used this dependency. We only support Python
3+, and the dependency has a known vulnerability and is not maintained.

There is not reason for us to keep it, and we were requested to remove it
in #172.
  • Loading branch information
apricote authored Dec 27, 2022
1 parent ed98de0 commit 381545d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
with open("CHANGELOG.rst") as changelog_file:
changelog = changelog_file.read()

requirements = ["future>=0.17.1", "python-dateutil>=2.7.5", "requests>=2.20"]
requirements = ["python-dateutil>=2.7.5", "requests>=2.20"]

extras_require = {"docs": ["Sphinx==1.8.1", "sphinx-rtd-theme==0.4.2"]}

Expand Down

0 comments on commit 381545d

Please sign in to comment.