Skip to content

Commit e2d9831

Browse files
stesMMathisLab
andauthored
Release 0.3.1 (#110)
* Release 0.3.1rc2 * rc2 >> 0.3.1 (#111) * bump to 0.3.1 --------- Co-authored-by: Mackenzie Mathis <[email protected]>
1 parent e36eea5 commit e2d9831

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ RUN make dist
4242
FROM cebra-base
4343

4444
# install the cebra wheel
45-
ENV WHEEL=cebra-0.3.1rc1-py2.py3-none-any.whl
45+
ENV WHEEL=cebra-0.3.1-py2.py3-none-any.whl
4646
WORKDIR /build
4747
COPY --from=wheel /build/dist/${WHEEL} .
4848
RUN pip install --no-cache-dir ${WHEEL}'[dev,integrations,datasets]'

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
CEBRA_VERSION := 0.3.1rc1
1+
CEBRA_VERSION := 0.3.1
22

33
dist:
44
python3 -m pip install virtualenv

PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: Steffen Schneider <[email protected]>
22
pkgname=python-cebra
33
_pkgname=cebra
4-
pkgver=0.3.1rc1
4+
pkgver=0.3.1
55
pkgrel=1
66
pkgdesc="Consistent Embeddings of high-dimensional Recordings using Auxiliary variables"
77
url="https://cebra.ai"

cebra/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
import cebra.integrations.sklearn as sklearn
5858

59-
__version__ = "0.3.1rc1"
59+
__version__ = "0.3.1"
6060
__all__ = ["CEBRA"]
6161
__allow_lazy_imports = False
6262
__lazy_imports = {}

reinstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ pip uninstall -y cebra
1515
# Get version info after uninstalling --- this will automatically get the
1616
# most recent version based on the source code in the current directory.
1717
# $(tools/get_cebra_version.sh)
18-
VERSION=0.3.1rc1
18+
VERSION=0.3.1
1919
echo "Upgrading to CEBRA v${VERSION}"
2020

2121
# Upgrade the build system (PEP517/518 compatible)

0 commit comments

Comments
 (0)