Skip to content

Commit d9d3eb3

Browse files
committed
Bump to 0.3.0: Add NumPy 2.x compatibility
1 parent 169030c commit d9d3eb3

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
from setuptools import setup
22

3-
with open("README.md", "r") as fh:
3+
with open("README.md", "r", encoding="utf-8") as fh:
44
long_description = fh.read()
55

66
setup(
77
name="numpyencoder",
8-
version="0.2.0",
8+
version="0.3.0",
99
author="Hunter M. Allen",
1010
author_email="allenhm@gmail.com",
1111
license="MIT",
12-
# packages=find_packages(),
1312
packages=["numpyencoder"],
1413
install_requires=["numpy>=1.14.3"],
1514
description="Python JSON encoder for handling Numpy data types.",
1615
long_description=long_description,
1716
long_description_content_type="text/markdown",
1817
url="https://github.com/hmallen/numpyencoder",
1918
keywords=["numpy", "json", "encoder"],
20-
classifiers=(
19+
classifiers=[
2120
"Programming Language :: Python :: 3",
2221
"License :: OSI Approved :: MIT License",
2322
"Operating System :: OS Independent",
24-
),
23+
],
24+
python_requires=">=3.6",
2525
)

0 commit comments

Comments
 (0)