From db9360b1ce12a8b17ae39d0909b887144524d5ee Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Wed, 24 Apr 2024 01:17:42 -0500 Subject: [PATCH] build: Update scipy lower bound to v1.5.2 * Update the lower bounds on scipy to v1.5.2 to ensure that the minimum supported dependencies workflow passes as it has started to fail consistently for scipy v1.5.1. * Update scipy to v1.5.2 in tests/constraints.txt to enforce the lower bound for the 'Minimum supported dependencies' tests. --- pyproject.toml | 2 +- tests/constraints.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 034be5f52f..57e91c2410 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,7 +50,7 @@ dependencies = [ "jsonpatch>=1.15", "jsonschema>=4.15.0", # for utils "pyyaml>=5.1", # for parsing CLI equal-delimited options - "scipy>=1.5.1", # requires numpy, which is required by pyhf and tensorflow + "scipy>=1.5.2", # requires numpy, which is required by pyhf and tensorflow "tqdm>=4.56.0", # for readxml "numpy", # compatible versions controlled through scipy ] diff --git a/tests/constraints.txt b/tests/constraints.txt index 6a7e13f7ac..7954b2be44 100644 --- a/tests/constraints.txt +++ b/tests/constraints.txt @@ -1,5 +1,5 @@ # core -scipy==1.5.1 # c.f. PR #2081 +scipy==1.5.2 # c.f. PR #2469 click==8.0.0 # c.f. PR #1958, #1909 tqdm==4.56.0 jsonschema==4.15.0 # c.f. PR #1979