Skip to content

Commit

Permalink
Merge pull request #218 from giovana-morais/fix_numpy_float
Browse files Browse the repository at this point in the history
np.float_ -> np.float64
  • Loading branch information
bmcfee authored Dec 6, 2024
2 parents edea1c4 + e4961e6 commit 1fcee0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jams/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,11 @@ def list_namespaces():
# Mapping of js primitives to numpy types
__TYPE_MAP__ = dict(integer=np.int_,
boolean=np.bool_,
number=np.float_,
number=np.float64,
object=np.object_,
array=np.object_,
string=np.object_,
null=np.float_)
null=np.float64)


def __get_dtype(typespec):
Expand Down

0 comments on commit 1fcee0a

Please sign in to comment.