From a93053369f035597af8e41c586a74575689d5de5 Mon Sep 17 00:00:00 2001 From: PatReis Date: Tue, 27 Feb 2024 13:35:56 +0100 Subject: [PATCH] upgrade to dev 4.0.2 --- changelog.md | 4 ++++ kgcnn/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/changelog.md b/changelog.md index 1fd8a086..b290e9e6 100644 --- a/changelog.md +++ b/changelog.md @@ -1,3 +1,7 @@ +v4.0.2 + + + v4.0.1 * Removed unused layers and added manual built in scripts and training functions, since with keras==3.0.5 the pytorch trainer tries to rebuild the model, diff --git a/kgcnn/__init__.py b/kgcnn/__init__.py index 045e8329..c14915a9 100644 --- a/kgcnn/__init__.py +++ b/kgcnn/__init__.py @@ -1,5 +1,5 @@ # Main package version. -__kgcnn_version__ = "4.0.1" +__kgcnn_version__ = "4.0.2" # Global definition of index order and axis. __indices_axis__ = 0 diff --git a/setup.py b/setup.py index 9ed63779..f5e274c8 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="kgcnn", - version="4.0.1", # If version is updated, change version in `kgcnn.__init__` too. (and update changelog) + version="4.0.2", # If version is updated, change version in `kgcnn.__init__` too. (and update changelog) author="Patrick Reiser", author_email="patrick.reiser@kit.edu", description="General Base Layers for Graph Convolutions with Keras",