Skip to content

Commit

Permalink
Merge pull request #270 from kalekundert/fix-py312
Browse files Browse the repository at this point in the history
Allow scipy>=1.13
  • Loading branch information
NicolasBoumal committed Jun 10, 2024
2 parents 5e38c0f + 727956f commit 1de3b6f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.x"
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["pip==22.3.1", "setuptools==65.6.3", "setuptools-scm[toml]>=6.2"]
requires = ["pip==22.3.1", "setuptools>=66.1.0", "setuptools-scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"

[project]
Expand Down Expand Up @@ -37,7 +37,7 @@ classifiers = [
]
dependencies = [
"numpy>=1.16.0",
"scipy>=1.0,<1.10",
"scipy>=1.0,!=1.10.*,!=1.11.*,!=1.12.*",
]
[project.urls]
homepage = "https://pymanopt.org"
Expand Down Expand Up @@ -84,7 +84,7 @@ docs = [
ci = [
"build==0.8.0",
"pip==22.3.1",
"setuptools==65.6.3",
"setuptools==66.1.0",
"wheel==0.38.4",
]
all = [
Expand Down

0 comments on commit 1de3b6f

Please sign in to comment.