Skip to content

Commit b9a3de3

Browse files
authored
Release 0.3.0rc1 (#66)
* Bump to 0.3.0rc1 * fix version in re-install
1 parent eda4aa7 commit b9a3de3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build: dist
1010
archlinux:
1111
mkdir -p dist/arch
1212
cp PKGBUILD dist/arch
13-
cp dist/cebra-0.2.0.tar.gz dist/arch
13+
cp dist/cebra-0.3.0rc1.tar.gz dist/arch
1414
(cd dist/arch; makepkg --skipchecksums -f)
1515

1616
# NOTE(stes): Ensure that no old tempfiles are present. Ideally, move this into

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.2.0
4+
pkgver=0.3.0rc1
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
@@ -47,7 +47,7 @@
4747

4848
import cebra.integrations.sklearn as sklearn
4949

50-
__version__ = "0.2.0"
50+
__version__ = "0.3.0rc1"
5151
__all__ = ["CEBRA"]
5252
__allow_lazy_imports = False
5353
__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.2.0
18+
VERSION=0.3.0rc1
1919
echo "Upgrading to CEBRA v${VERSION}"
2020

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

0 commit comments

Comments
 (0)