File: no_future_dependency.patch

package info (click to toggle)
emperor 1.0.4%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 32,124 kB
  • sloc: javascript: 11,426; python: 4,349; makefile: 183; sh: 30
file content (16 lines) | stat: -rw-r--r-- 585 bytes parent folder | download | duplicates (2)
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"]