Skip to content

Commit

Permalink
scipy dependence
Browse files Browse the repository at this point in the history
  • Loading branch information
jrenaud90 committed Nov 12, 2024
1 parent 6a3e5e4 commit 3bb3d37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Fixes:
* Fixed dependency compatibility issues.
* Fixed incorrect function signature type for scipy's `spherical_jn`.
* Fixed incorrect function signature type for scipy's `spherical_jn`. SciPy v.1.14.X uses a new signature which is breaking on MacOS. Limiting to "SciPy<1.14" for now.

### Version 0.5.4 (2024-04-30)

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies = [
# Scientific and computing resources
"numba>=0.54.1",
"numpy>=1.22, <1.27",
"scipy>=1.9.3",
"scipy>=1.9.3, <1.14", # Issue with scipy==1.14 and MacOS Py_ssize_t vs. long
# Configuration file resources
"platformdirs>=3.11.0, <4",
"toml>=0.10.2",
Expand Down Expand Up @@ -113,7 +113,7 @@ julia = [
requires = [
'setuptools>=64.0.0',
'numpy>=1.22, <1.27',
"scipy>=1.9.3",
"scipy>=1.9.3, <1.14", # Issue with scipy==1.14 and MacOS Py_ssize_t vs. long
'cython>=3.0.0',
'wheel>=0.38',
"cyrk>=0.8.7, <0.10",
Expand Down

0 comments on commit 3bb3d37

Please sign in to comment.