File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ RUN make dist
4242FROM 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
4646WORKDIR /build
4747COPY --from=wheel /build/dist/${WHEEL} .
4848RUN pip install --no-cache-dir ${WHEEL}'[dev,integrations,datasets]'
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ build: dist
1010archlinux :
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
Original file line number Diff line number Diff line change 11# Maintainer: Steffen Schneider <stes@hey.com>
22pkgname=python-cebra
33_pkgname=cebra
4- pkgver=0.3.0rc2
4+ pkgver=0.3.0
55pkgrel=1
66pkgdesc=" Consistent Embeddings of high-dimensional Recordings using Auxiliary variables"
77url=" https://cebra.ai"
Original file line number Diff line number Diff line change 4747
4848import 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 = {}
Original file line number Diff line number Diff 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
1919echo " Upgrading to CEBRA v${VERSION} "
2020
2121# Upgrade the build system (PEP517/518 compatible)
Original file line number Diff line number Diff line change 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+ #
112import matplotlib
213import numpy as np
314import plotly .graph_objects as go
You can’t perform that action at this time.
0 commit comments