Update to Jumpy 1.0 (#345)

This commit is contained in:
Mark Towers
2023-03-17 17:41:45 +00:00
committed by GitHub
parent 2ac4d401a9
commit 24a55188e5
3 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ from typing import Callable
try:
import jumpy as jp
import jumpy.numpy as jp
except ImportError as e:
raise ImportError("Jumpy is not installed, run `pip install jax-jumpy`") from e
import numpy as np

View File

@@ -18,7 +18,7 @@ from typing_extensions import Final
try:
import jumpy as jp
import jumpy.numpy as jp
except ImportError as e:
raise ImportError("Jumpy is not installed, run `pip install jax-jumpy`") from e
import numpy as np

View File

@@ -26,7 +26,7 @@ classifiers = [
]
dependencies = [
"numpy >=1.21.0",
"jax-jumpy >=0.2.0",
"jax-jumpy>=1.0.0",
"cloudpickle >=1.2.0",
"importlib-metadata >=4.8.0; python_version < '3.10'",
"typing-extensions >=4.3.0",