Explorar el Código

Fix python package deps

scipy 1.3.0 makes backward incompatible changes and ignores semver

Signed-off-by: Vadim Markovtsev <vadim@sourced.tech>
Vadim Markovtsev hace 5 años
padre
commit
9de40da8eb
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  1. 2 2
      python/requirements.txt
  2. 1 1
      python/setup.py

+ 2 - 2
python/requirements.txt

@@ -3,11 +3,11 @@ matplotlib>=2.0,<4.0
 numpy==1.16.0
 pandas>=0.20.0,<1.0
 PyYAML==4.2b1
-scipy>=0.19.0,<2.0
+scipy==1.2.1
 protobuf>=3.5.0,<4.0
 munch>=2.0
 hdbscan==0.8.18
 seriate==1.0.0
 fastdtw==0.3.2
 python-dateutil==2.8.0
-lifelines==0.20.4
+lifelines==0.20.4

+ 1 - 1
python/setup.py

@@ -29,7 +29,7 @@ setup(
         "numpy>=1.12.0,<2.0",
         "pandas>=0.20.0,<1.0",
         "PyYAML>=3.0,<5.0",
-        "scipy>=0.19.0,<2.0",
+        "scipy>=0.19.0,<1.3.0",
         "protobuf>=3.5.0,<4.0",
         "munch>=2.0,<3.0",
         "hdbscan>=0.8.0,<2.0",