Skip to content

Commit 0378db0

Browse files
authored
Release v0.3.0 (#92)
* Bump version to 0.3.0 * Add missing license headers
1 parent 35e5cbe commit 0378db0

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-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.0rc2-py2.py3-none-any.whl
45+
ENV WHEEL=cebra-0.3.0-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
@@ -10,7 +10,7 @@ build: dist
1010
archlinux:
1111
mkdir -p dist/arch
1212
cp PKGBUILD dist/arch
13-
cp dist/cebra-0.3.0rc2.tar.gz dist/arch
13+
cp dist/cebra-0.3.0.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.3.0rc2
4+
pkgver=0.3.0
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.3.0rc2"
50+
__version__ = "0.3.0"
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.3.0rc2
18+
VERSION=0.3.0
1919
echo "Upgrading to CEBRA v${VERSION}"
2020

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

tests/test_plotly.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
#
2+
# (c) All rights reserved. ECOLE POLYTECHNIQUE FÉDÉRALE DE LAUSANNE,
3+
# Switzerland, Laboratory of Prof. Mackenzie W. Mathis (UPMWMATHIS) and
4+
# original authors: Steffen Schneider, Jin H Lee, Mackenzie W Mathis. 2023.
5+
#
6+
# Source code:
7+
# https://github.com/AdaptiveMotorControlLab/CEBRA
8+
#
9+
# Please see LICENSE.md for the full license document:
10+
# https://github.com/AdaptiveMotorControlLab/CEBRA/LICENSE.md
11+
#
112
import matplotlib
213
import numpy as np
314
import plotly.graph_objects as go

0 commit comments

Comments
 (0)