Skip to content

Commit

Permalink
Bump minimum SciPy version to 1.10.
Browse files Browse the repository at this point in the history
SciPy 1.9.0 was released July 29, 2022, which is 24 months ago

PiperOrigin-RevId: 657215038
  • Loading branch information
hawkinsp authored and jax authors committed Jul 29, 2024
1 parent e78e643 commit fd23b87
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Remember to align the itemized text with the first line of an item within a list
supported version until July 2025.
* The minimum NumPy version is now 1.24. NumPy 1.24 will remain the minimum
supported version until December 2024.
* The minimum SciPy version is now 1.10. SciPy 1.10 will remain the minimum
supported version until January 2025.
* {func}`jax.numpy.ceil`, {func}`jax.numpy.floor` and {func}`jax.numpy.trunc` now return the output
of the same dtype as the input, i.e. no longer upcast integer or boolean inputs to floating point.
* `libdevice.10.bc` is no longer bundled with CUDA wheels. It must be
Expand Down
2 changes: 1 addition & 1 deletion jaxlib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def has_ext_modules(self):
packages=['jaxlib', 'jaxlib.xla_extension'],
python_requires='>=3.10',
install_requires=[
'scipy>=1.9',
'scipy>=1.10',
"scipy>=1.11.1; python_version>='3.12'",
'numpy>=1.24',
'ml_dtypes>=0.2.0',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def load_version_module(pkg_path):
'numpy>=1.24',
"numpy>=1.26.0; python_version>='3.12'",
'opt_einsum',
'scipy>=1.9',
'scipy>=1.10',
"scipy>=1.11.1; python_version>='3.12'",
],
extras_require={
Expand Down

0 comments on commit fd23b87

Please sign in to comment.