Skip to content
Draft
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion mathphys/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ def flatten(x):
# ------------------------- HELPER METHODS ------------------------------------
_BUILTINTYPES = (int, float, complex, str, bytes, bool)
_BUILTINNAMES = {typ.__name__ for typ in _BUILTINTYPES}
_NPTYPES = (_np.int_, _np.float_, _np.complex_, _np.bool_)
_NPTYPES = (_np.int_, _np.float64, _np.complex128, _np.bool_)


def _save_recursive_hdf5(fil, path, obj, compress):
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=44"]
requires = ["setuptools>=82"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -14,7 +14,7 @@ maintainers = [
description = "LNLS Math and Physics Utilities"
readme = "README.md"
dynamic = ["version", "dependencies"]
requires-python = ">=3.4"
requires-python = ">=3.12"
classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
importlib-metadata
numpy>=1.18,<=1.23
numpy>=1.26.0
matplotlib>=3.1.2
h5py>=3.1.0
Loading