From 557da38f6bde27b0f40ca0f9a19476b6ad33b61b Mon Sep 17 00:00:00 2001 From: Steffen Schneider Date: Thu, 5 Jun 2025 13:10:24 -0700 Subject: [PATCH] bump version to 0.6.0a2 --- 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 1a280a30..c77f8c95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,7 +40,7 @@ RUN make dist FROM cebra-base # install the cebra wheel -ENV WHEEL=cebra-0.6.0a1-py3-none-any.whl +ENV WHEEL=cebra-0.6.0a2-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 a863a921..f5696026 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CEBRA_VERSION := 0.6.0a1 +CEBRA_VERSION := 0.6.0a2 dist: python3 -m pip install virtualenv diff --git a/PKGBUILD b/PKGBUILD index 48088dcb..3fc70b19 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,7 +1,7 @@ # Maintainer: Steffen Schneider pkgname=python-cebra _pkgname=cebra -pkgver=0.6.0a1 +pkgver=0.6.0a2 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 cb2cbd06..a8631b51 100644 --- a/cebra/__init__.py +++ b/cebra/__init__.py @@ -66,7 +66,7 @@ import cebra.integrations.sklearn as sklearn -__version__ = "0.6.0a1" +__version__ = "0.6.0a2" __all__ = ["CEBRA"] __allow_lazy_imports = False __lazy_imports = {} diff --git a/reinstall.sh b/reinstall.sh index ea8981b9..067985a1 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.6.0a1 +VERSION=0.6.0a2 echo "Upgrading to CEBRA v${VERSION}" # Upgrade the build system (PEP517/518 compatible)