From 381545d2addfa625d4a53cca0705397e6e5e4672 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20T=C3=B6lle?= Date: Tue, 27 Dec 2022 09:34:10 +0100 Subject: [PATCH] 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. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 322666a0..96879fb5 100644 --- a/setup.py +++ b/setup.py @@ -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"]}