From 27bfced9972b7cbd8337b9026921e651cc165f9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jul 2023 09:27:27 +0000 Subject: [PATCH] Update scipy requirement from <1.11,>=1.8 to >=1.8,<1.12 in /tools/pot Updates the requirements on [scipy](https://github.com/scipy/scipy) to permit the latest version. - [Release notes](https://github.com/scipy/scipy/releases) - [Commits](https://github.com/scipy/scipy/compare/v1.8.0...v1.11.1) --- updated-dependencies: - dependency-name: scipy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tools/pot/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pot/setup.py b/tools/pot/setup.py index 45d69b50efd4f4..948e53276e3172 100644 --- a/tools/pot/setup.py +++ b/tools/pot/setup.py @@ -67,7 +67,7 @@ def get_version(): INSTALL_REQUIRES = [ "numpy>=1.16.6", "scipy~=1.7; python_version == '3.7'", - "scipy>=1.8,<1.11; python_version >= '3.8'", + "scipy>=1.8,<1.12; python_version >= '3.8'", "jstyleson>=0.0.2", "addict>=2.4.0", "networkx<=3.1",