1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Remove extraneous dependency on python3-future
Bug-Debian: https://bugs.debian.org/1058565
Author: Alexandre Detiste <alexandre.detiste@gmail.com>
Last-Update: Fri, 21 Feb 2025 21:53:49 +0100
--- a/setup.py
+++ b/setup.py
@@ -35,7 +35,7 @@
long_description = f.read()
base = ["numpy >= 1.7", "scipy >= 0.17.0", "click", "pandas",
- "scikit-bio >= 0.4.1", "jinja2 >= 2.9", "future"]
+ "scikit-bio >= 0.4.1", "jinja2 >= 2.9"]
doc = ["Sphinx<4", "jinja2 >= 2.9, < 3.1", "sphinx-bootstrap-theme",
"numpydoc"]
test = ["pep8", "flake8", "nose"]
|