Skip to content

Commit 48dcbc8

Browse files
committed
[deploy] allow iso2mesh to use with both numpy 1.x and 2.x, bump 0.5.5
1 parent 7606f86 commit 48dcbc8

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
* **Copyright**: (C) Qianqian Fang (2024-2025) <q.fang at neu.edu>
66
* **License**: GNU Public License V3 or later
7-
* **Version**: 0.5.4
7+
* **Version**: 0.5.5
88
* **URL**: [https://pypi.org/project/iso2mesh/](https://pypi.org/project/iso2mesh/)
99
* **Homepage**: [https://iso2mesh.sf.net](https://iso2mesh.sf.net)
1010
* **Github**: [https://github.com/NeuroJSON/pyiso2mesh](https://github.com/NeuroJSON/pyiso2mesh)

iso2mesh/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@
263263
ndimfilter,
264264
)
265265

266-
__version__ = "0.5.4"
266+
__version__ = "0.5.5"
267267
__all__ = [
268268
"advancefront",
269269
"barycentricgrid",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
setup(
77
name="iso2mesh",
88
packages=["iso2mesh"],
9-
version="0.5.4",
9+
version="0.5.5",
1010
license="GPLv3+",
1111
description="One-liner 3D Surface and Tetrahedral Mesh Generation Toolbox",
1212
long_description=readme,
@@ -41,7 +41,7 @@
4141
"Data format",
4242
],
4343
platforms="any",
44-
install_requires=["numpy>=1.8.0", "matplotlib", "jdata>=0.8.2", "bjdata"],
44+
install_requires=["numpy>=1.8.0,<3.0.0", "matplotlib", "jdata>=0.8.2", "bjdata"],
4545
classifiers=[
4646
"Development Status :: 4 - Beta",
4747
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)