Skip to content

Commit 8bdcd9d

Browse files
chore(version): 0.4.3
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
1 parent 0e53893 commit 8bdcd9d

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pyrovelocity MODULE
44

55
module(
66
name = "pyrovelocity",
7-
version = "0.4.2",
7+
version = "0.4.3",
88
compatibility_level = 1,
99
)
1010

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -975,8 +975,8 @@ approve-prs: ## Approve github pull requests from bots: PR_ENTRIES="2-5 10 12-18
975975
fi; \
976976
done
977977

978-
PREVIOUS_VERSION := 0.4.1
979-
NEXT_VERSION := 0.4.2
978+
PREVIOUS_VERSION := 0.4.2
979+
NEXT_VERSION := 0.4.3
980980
VERSION_FILES := \
981981
pyproject.toml \
982982
conda/colab/construct.yaml \

conda/colab/construct.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: pyrovelocity-colab
2-
version: 0.4.2
2+
version: 0.4.3
33

44
channels:
55
- pytorch

containers/gpu.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ COPY . /root
7777
# development
7878
RUN pip install --no-deps -e .
7979
# distribution
80-
# RUN pip install pyrovelocity==0.4.2
80+
# RUN pip install pyrovelocity==0.4.3
8181

8282
ARG tag
8383
ENV FLYTE_INTERNAL_IMAGE $tag

containers/pkg.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ COPY . /root
3434
# development
3535
RUN pip install --no-deps -e .
3636
# distribution
37-
# RUN pip install pyrovelocity==0.4.2
37+
# RUN pip install pyrovelocity==0.4.3
3838

3939
ARG tag
4040
ENV FLYTE_INTERNAL_IMAGE $tag

docs/source/notebooks/pyrovelocity_colab_template.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
}
7171
],
7272
"source": [
73-
"pyrovelocity_version = \"0.4.2\"\n",
73+
"pyrovelocity_version = \"0.4.3\"\n",
7474
"pyrovelocity_colab_script_url = (\n",
7575
" \"https://storage.googleapis.com/pyrovelocity/data/scripts/\"\n",
7676
" + f\"pyrovelocity-colab-{pyrovelocity_version}-Linux-x86_64.sh\"\n",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyrovelocity"
3-
version = "0.4.2"
3+
version = "0.4.3"
44
packages = [{ include = "pyrovelocity", from = "src" }]
55
description = "A multivariate RNA Velocity model to estimate future cell states with uncertainty using probabilistic modeling with pyro."
66
authors = ["pyrovelocity team"]

scripts/conda

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -euo pipefail
44

55
PACKAGE_NAME="pyrovelocity"
6-
PACKAGE_VERSION="0.4.2"
6+
PACKAGE_VERSION="0.4.3"
77
CONDA_BUILD_STRING="pyhff70e4c"
88
CONDA_BUILD_NUMBER="0"
99
# CONDA_CHANNEL_LABEL="pyrovelocity_dev"
@@ -32,7 +32,7 @@ Example:
3232
3333
./conda \\
3434
--name pyrovelocity \\
35-
--version 0.4.2.dev1 \\
35+
--version 0.4.3.dev1 \\
3636
--build-string pyhff70e4c \\
3737
--build-number 0 \\
3838
--label pyrovelocity_dev
@@ -67,9 +67,9 @@ PACKAGE_SPEC="conda-forge/label/\
6767
$CONDA_CHANNEL_LABEL::\
6868
$PACKAGE_NAME=$PACKAGE_VERSION=$CONDA_BUILD_STRING"_"$CONDA_BUILD_NUMBER"
6969

70-
BLUE="\0.4.2;34;1m"
70+
BLUE="\0.4.3;34;1m"
7171
BOLD="\033[1m"
72-
NO_COLOR="\0.4.2m"
72+
NO_COLOR="\0.4.3m"
7373
if [ "$USE_COLOR" = false ]; then
7474
BLUE=""
7575
BOLD=""

0 commit comments

Comments
 (0)