Skip to content

Commit a7b271c

Browse files
committed
lock numpy to v1, as v2 just got released. release v0.0.5
1 parent 7983792 commit a7b271c

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def run(self):
1717
setup(
1818
author="Luis Fagundes",
1919
author_email='lhfagundes@gmail.com',
20-
version='0.0.4',
20+
version='0.0.5',
2121
python_requires='>=3.8',
2222
classifiers=[
2323
'Development Status :: 2 - Pre-Alpha',
@@ -47,7 +47,8 @@ def run(self):
4747
"websockets==12.*",
4848
"GitPython==3.1.*",
4949
"asgiref==3.8.*",
50-
"uvicorn==0.30.*"
50+
"uvicorn==0.30.*",
51+
"numpy<2",
5152
],
5253
license="GNU Affero General Public License v3",
5354
include_package_data=True,

solid_node/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.0.4"
1+
__version__ = "0.0.5"

0 commit comments

Comments
 (0)