Restrict scipy module version for POT (#18237)

* Restrict scipy module version for POT

Latest release https://pypi.org/project/scipy/1.11.0 causes dependency conflicts

* Bump OMZ to include scipy restriction

---------

Co-authored-by: Roman Kazantsev <roman.kazantsev@intel.com>
This commit is contained in:
Alina Kladieva
2023-06-27 12:59:45 +02:00
committed by GitHub
co-authored by Roman Kazantsev
parent 1566567ca4
commit c2afa2aefc
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ if '--install-dev-extras' in sys.argv:
INSTALL_REQUIRES = [
"numpy>=1.16.6",
"scipy~=1.7; python_version == '3.7'",
"scipy>=1.8; python_version >= '3.8'",
"scipy>=1.8,<1.11; python_version >= '3.8'",
"jstyleson>=0.0.2",
"addict>=2.4.0",
"networkx<=3.1",