From e5b7be6cbf2239cf08b70cd6d46efb22f562e1bf Mon Sep 17 00:00:00 2001 From: Steffen Schneider Date: Sat, 2 Dec 2023 14:38:03 +0100 Subject: [PATCH 1/2] Release 0.3.1rc2 --- Dockerfile | 2 +- Makefile | 2 +- PKGBUILD | 2 +- cebra/__init__.py | 2 +- reinstall.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index ae7a766a..0852d7e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN make dist FROM cebra-base # install the cebra wheel -ENV WHEEL=cebra-0.3.1rc1-py2.py3-none-any.whl +ENV WHEEL=cebra-0.3.1rc2-py2.py3-none-any.whl WORKDIR /build COPY --from=wheel /build/dist/${WHEEL} . RUN pip install --no-cache-dir ${WHEEL}'[dev,integrations,datasets]' diff --git a/Makefile b/Makefile index cd4afd51..c4522f8b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CEBRA_VERSION := 0.3.1rc1 +CEBRA_VERSION := 0.3.1rc2 dist: python3 -m pip install virtualenv diff --git a/PKGBUILD b/PKGBUILD index cf513b90..84656f7c 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Steffen Schneider pkgname=python-cebra _pkgname=cebra -pkgver=0.3.1rc1 +pkgver=0.3.1rc2 pkgrel=1 pkgdesc="Consistent Embeddings of high-dimensional Recordings using Auxiliary variables" url="https://cebra.ai" diff --git a/cebra/__init__.py b/cebra/__init__.py index 8d9d14db..61effc75 100644 --- a/cebra/__init__.py +++ b/cebra/__init__.py @@ -56,7 +56,7 @@ import cebra.integrations.sklearn as sklearn -__version__ = "0.3.1rc1" +__version__ = "0.3.1rc2" __all__ = ["CEBRA"] __allow_lazy_imports = False __lazy_imports = {} diff --git a/reinstall.sh b/reinstall.sh index 8ea10e40..10432974 100755 --- a/reinstall.sh +++ b/reinstall.sh @@ -15,7 +15,7 @@ pip uninstall -y cebra # Get version info after uninstalling --- this will automatically get the # most recent version based on the source code in the current directory. # $(tools/get_cebra_version.sh) -VERSION=0.3.1rc1 +VERSION=0.3.1rc2 echo "Upgrading to CEBRA v${VERSION}" # Upgrade the build system (PEP517/518 compatible) From 4b74824bdd7b5a9f887212419f0c298f969a933c Mon Sep 17 00:00:00 2001 From: Mackenzie Mathis Date: Wed, 6 Dec 2023 16:50:13 -0800 Subject: [PATCH 2/2] rc2 >> 0.3.1 (#111) * bump to 0.3.1 --- Dockerfile | 2 +- Makefile | 2 +- PKGBUILD | 2 +- cebra/__init__.py | 2 +- reinstall.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0852d7e6..3e29f88e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN make dist FROM cebra-base # install the cebra wheel -ENV WHEEL=cebra-0.3.1rc2-py2.py3-none-any.whl +ENV WHEEL=cebra-0.3.1-py2.py3-none-any.whl WORKDIR /build COPY --from=wheel /build/dist/${WHEEL} . RUN pip install --no-cache-dir ${WHEEL}'[dev,integrations,datasets]' diff --git a/Makefile b/Makefile index c4522f8b..16abfb9f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CEBRA_VERSION := 0.3.1rc2 +CEBRA_VERSION := 0.3.1 dist: python3 -m pip install virtualenv diff --git a/PKGBUILD b/PKGBUILD index 84656f7c..e4edb49b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Steffen Schneider pkgname=python-cebra _pkgname=cebra -pkgver=0.3.1rc2 +pkgver=0.3.1 pkgrel=1 pkgdesc="Consistent Embeddings of high-dimensional Recordings using Auxiliary variables" url="https://cebra.ai" diff --git a/cebra/__init__.py b/cebra/__init__.py index 61effc75..cd3e9bba 100644 --- a/cebra/__init__.py +++ b/cebra/__init__.py @@ -56,7 +56,7 @@ import cebra.integrations.sklearn as sklearn -__version__ = "0.3.1rc2" +__version__ = "0.3.1" __all__ = ["CEBRA"] __allow_lazy_imports = False __lazy_imports = {} diff --git a/reinstall.sh b/reinstall.sh index 10432974..9eb6d8c9 100755 --- a/reinstall.sh +++ b/reinstall.sh @@ -15,7 +15,7 @@ pip uninstall -y cebra # Get version info after uninstalling --- this will automatically get the # most recent version based on the source code in the current directory. # $(tools/get_cebra_version.sh) -VERSION=0.3.1rc2 +VERSION=0.3.1 echo "Upgrading to CEBRA v${VERSION}" # Upgrade the build system (PEP517/518 compatible)