Skip to content

Commit 381545d

Browse files
authored
fix: remove unused future dependency (#173)
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.
1 parent ed98de0 commit 381545d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
with open("CHANGELOG.rst") as changelog_file:
1111
changelog = changelog_file.read()
1212

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

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

0 commit comments

Comments
 (0)