From 3c442c49f89c18d76e5d69d93ab26b70d149c2b7 Mon Sep 17 00:00:00 2001 From: Mathias Lechner Date: Wed, 19 Jun 2024 14:59:11 -0400 Subject: [PATCH] Bump version to 1.0.0 and remove requirements.txt version pin --- requirements.txt | 6 +++--- setup.py | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/requirements.txt b/requirements.txt index 3620399b..a5698bde 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -numpy~=1.26.4 -keras~=3.3.3 -pytest~=8.2.2 +numpy +keras +pytest diff --git a/setup.py b/setup.py index c3f642a5..cecdda04 100644 --- a/setup.py +++ b/setup.py @@ -17,9 +17,9 @@ setup( name="ncps", - version="0.0.8", + version="1.0.0", packages=find_packages(), # include/exclude arguments take * as wildcard, . for any sub-package names - description="Neural Circuit Policies for PyTorch and Keras", + description="Neural Circuit Policies for PyTorch, Tensorflow, and Keras V3", url="https://github.com/mlech26l/ncps", author="Mathias Lechner", author_email="mlech26l@gmail.com", @@ -43,4 +43,4 @@ "Topic :: Scientific/Engineering", "Topic :: Software Development", ], -) \ No newline at end of file +)