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
parent 1566567ca4
commit c2afa2aefc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit 230f21ecd7f19026b63d65cedd23f27c07bee1d4
Subproject commit c7a13a842d41333397ea6c3f9bc5a7053da00eec

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",