Skip to content

Commit

Permalink
test numpy equiv of math_util functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mcara committed May 12, 2024
1 parent dd631e1 commit eda0c95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ documentation = "http://spherical-geometry.readthedocs.io/"
requires = [
"setuptools>=61.2",
"setuptools_scm[toml]>=3.6",
#"numpy>=1.25",
"numpy>=2.0.0dev0",
"numpy>=1.25",
#"numpy>=2.0.0dev0",
]
build-backend = "setuptools.build_meta"

Expand Down
2 changes: 1 addition & 1 deletion spherical_geometry/great_circle_arc.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# the python versions are a fallback if the C cannot be used
try:
from spherical_geometry import math_util
HAS_C_UFUNCS = True
HAS_C_UFUNCS = False
except ImportError:
HAS_C_UFUNCS = False

Expand Down

0 comments on commit eda0c95

Please sign in to comment.