Skip to content

Commit 9fd2502

Browse files
authored
Backport PR #3752: unbound scipy (#3753)
1 parent 17ded65 commit 9fd2502

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ env:
1111
PYTEST_ADDOPTS: "-v --color=yes -n auto --internet-tests --junitxml=test-data/test-results.xml"
1212
FORCE_COLOR: "1"
1313
MPLBACKEND: agg
14-
UV_CONSTRAINT: ci/constraints.txt
14+
# It’s impossible to ignore SyntaxWarnings for a single module,
15+
# so because leidenalg 0.10.0 has them, we pre-compile things: https://github.com/vtraag/leidenalg/issues/173
16+
UV_COMPILE_BYTECODE: "1"
1517

1618
defaults:
1719
run:

ci/constraints.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/release-notes/3752.bugfix.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Remove upper bound from `scipy` version {smaller}`P Angerer`

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ dependencies = [
5050
"numpy>=1.24.1",
5151
"matplotlib>=3.7.5",
5252
"pandas >=1.5.3",
53-
"scipy>=1.8.1,<1.16.0",
53+
"scipy>=1.8.1",
5454
"seaborn>=0.13.2",
5555
"h5py>=3.7.0",
5656
"tqdm",
5757
"scikit-learn>=1.1.3",
58-
"statsmodels>=0.14.4",
58+
"statsmodels>=0.14.5",
5959
"patsy!=1.0.0", # https://github.com/pydata/patsy/issues/215
6060
"networkx>=2.7.1",
6161
"natsort",

0 commit comments

Comments
 (0)