Skip to content

Commit 6011499

Browse files
larsonerakaszynski
andauthored
MAINT: Bump to 3.9 and NumPy 2 (#66)
* MAINT: Bump to 3.9 and NumPy 2 * Update pymeshfix/_version.py * Update pymeshfix/_version.py --------- Co-authored-by: Alex Kaszynski <[email protected]>
1 parent 7201351 commit 6011499

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

pymeshfix/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
88
"""
99

10-
version_info = 0, 17, "dev0"
10+
version_info = 0, 18, "dev0"
1111
__version__ = ".".join(map(str, version_info))

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ requires = [
33
"setuptools>=42",
44
"wheel>=0.33.0",
55
"cython>=3.0.0",
6-
"oldest-supported-numpy"
6+
"numpy>=2,<3",
77
]
88

99
build-backend = "setuptools.build_meta"
@@ -18,7 +18,7 @@ filterwarnings = [
1818

1919
[tool.cibuildwheel]
2020
archs = ["auto64"] # 64-bit only
21-
skip = "pp* *musllinux* cp37-*" # disable PyPy and musl-based wheels and Python<3.8
21+
skip = "pp* *musllinux* cp37-* cp38-*" # disable PyPy and musl-based wheels and Python<3.9
2222
test-requires = "pytest"
2323
test-command = "pytest {project}/tests"
2424

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,12 @@
5353
"Development Status :: 4 - Beta",
5454
"Intended Audience :: Science/Research",
5555
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
56-
"Programming Language :: Python :: 3.7",
57-
"Programming Language :: Python :: 3.8",
5856
"Programming Language :: Python :: 3.9",
5957
"Programming Language :: Python :: 3.10",
6058
"Programming Language :: Python :: 3.11",
59+
"Programming Language :: Python :: 3.12",
6160
],
62-
python_requires=">=3.7",
61+
python_requires=">=3.9",
6362
url="https://github.com/pyvista/pymeshfix",
6463
# Build cython modules
6564
ext_modules=cythonize(

0 commit comments

Comments
 (0)