Skip to content

Commit 96d4c08

Browse files
committed
update version
1 parent ee69974 commit 96d4c08

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

onnx_array_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
(Numpy) Array API for ONNX.
44
"""
55

6-
__version__ = "0.1.0"
6+
__version__ = "0.1.1"
77
__author__ = "Xavier Dupré"

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@
2323
if len(requirements) == 0 or requirements == [""]:
2424
requirements = ["numpy", "scipy", "onnx"]
2525

26-
long_description = ""
26+
try:
27+
with open(os.path.join(here, "README.rst"), "r", encoding='utf-8') as f:
28+
long_description = "onnx-array-api:" + f.read().split('onnx-array-api:')[1]
29+
except FileNotFoundError:
30+
long_description = ""
2731

28-
version_str = "0.0.1"
32+
version_str = "0.1.0"
2933
with open(os.path.join(here, "onnx_array_api/__init__.py"), "r") as f:
3034
line = [
3135
_
@@ -43,7 +47,7 @@
4347
long_description=long_description,
4448
author="Xavier Dupré",
4549
author_email="[email protected]",
46-
url="https://github.com/sdpython/onnx_array_api",
50+
url="https://github.com/sdpython/onnx-array-api",
4751
packages=packages,
4852
package_dir=package_dir,
4953
package_data=package_data,

0 commit comments

Comments
 (0)