Skip to content

Commit

Permalink
Merge pull request #199 from vivarium-collective/serializer_dtype_pat…
Browse files Browse the repository at this point in the history
…ch-1

Removing dtypes from serialize.py that are not available on several platforms
  • Loading branch information
eagmon authored Jun 1, 2022
2 parents d4d5168 + 06faf82 commit c602206
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vivarium/core/serialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ def __init__(self) -> None:
np.bool_,
np.int8, np.int16, np.int32, np.int64,
np.uint8, np.uint16, np.uint32, np.uint64,
np.float16, np.float32, np.float64, np.float128,
np.complex64, np.complex128, np.complex256,
np.float16, np.float32, np.float64,
np.complex64, np.complex128,
))

@staticmethod
Expand Down

0 comments on commit c602206

Please sign in to comment.