Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jax version constraint #148

Merged
merged 5 commits into from
Apr 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ project_urls =
packages = find:
install_requires =
hyperactive>=4.4.0
jax>=0.3.10 #,<=0.3.23
jaxlib>=0.3.10 #,<=0.3.23 # to import jaxlib.xla_extension.XlaRuntimeError
jax>=0.3.10,<=0.4.23 #
jaxlib>=0.3.10,<=0.4.23 #,<=0.4.23 # to import jaxlib.xla_extension.XlaRuntimeError
numpy
pooch
pydantic>=1.9.1,<2.0.0
Expand All @@ -44,7 +44,7 @@ console_scripts =
[options.extras_require]
bench =
jax
jaxlib>=0.3.10 # to import jaxlib.xla_extension.XlaRuntimeError
jaxlib>=0.3.10,<=0.4.23 # to import jaxlib.xla_extension.XlaRuntimeError
scipy
dask =
dask
Expand All @@ -61,16 +61,16 @@ dev =
flake8-markdown
flake8-pytest
isort
jax
jaxlib>=0.3.10 # to import jaxlib.xla_extension.XlaRuntimeError
jax>=0.3.10,<=0.4.23 #
jaxlib>=0.3.10,<=0.4.23 # to import jaxlib.xla_extension.XlaRuntimeError
mypy
nox
pre-commit
pytest
pytest-benchmark
pytest-cov
pytest-datadir
scipy
scipy<1.13
xdoctest

[isort]
Expand Down
Loading