From 73dfe1ceb150dc989164800805793917a911c9f1 Mon Sep 17 00:00:00 2001 From: Cameron Smith Date: Tue, 13 Aug 2024 13:07:16 -0400 Subject: [PATCH] chore(version): `0.3.0b4` Signed-off-by: Cameron Smith --- MODULE.bazel | 2 +- Makefile | 4 ++-- conda/colab/construct.yaml | 2 +- containers/gpu.Dockerfile | 2 +- containers/pkg.Dockerfile | 2 +- docs/source/notebooks/pyrovelocity_colab_template.ipynb | 2 +- pyproject.toml | 2 +- scripts/conda | 4 ++-- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index 853ba0e22..1439ab830 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -4,7 +4,7 @@ pyrovelocity MODULE module( name = "pyrovelocity", - version = "0.3.0b3", + version = "0.3.0b4", compatibility_level = 1, ) diff --git a/Makefile b/Makefile index cb6e99d08..985f451f0 100644 --- a/Makefile +++ b/Makefile @@ -913,8 +913,8 @@ approve-prs: ## Approve github pull requests from bots: PR_ENTRIES="2-5 10 12-18 fi; \ done -PREVIOUS_VERSION := 0.3.0b2 -NEXT_VERSION := 0.3.0b3 +PREVIOUS_VERSION := 0.3.0b3 +NEXT_VERSION := 0.3.0b4 VERSION_FILES := \ pyproject.toml \ conda/colab/construct.yaml \ diff --git a/conda/colab/construct.yaml b/conda/colab/construct.yaml index 3731be98d..d65bda4ae 100644 --- a/conda/colab/construct.yaml +++ b/conda/colab/construct.yaml @@ -1,5 +1,5 @@ name: pyrovelocity-colab -version: 0.3.0b3 +version: 0.3.0b4 channels: - pytorch diff --git a/containers/gpu.Dockerfile b/containers/gpu.Dockerfile index 470ab6e68..c1a5091e5 100644 --- a/containers/gpu.Dockerfile +++ b/containers/gpu.Dockerfile @@ -77,7 +77,7 @@ COPY . /root # development RUN pip install --no-deps -e . # distribution -# RUN pip install pyrovelocity==0.3.0b3 +# RUN pip install pyrovelocity==0.3.0b4 ARG tag ENV FLYTE_INTERNAL_IMAGE $tag diff --git a/containers/pkg.Dockerfile b/containers/pkg.Dockerfile index a2429c953..d6dd4b7c7 100644 --- a/containers/pkg.Dockerfile +++ b/containers/pkg.Dockerfile @@ -34,7 +34,7 @@ COPY . /root # development RUN pip install --no-deps -e . # distribution -# RUN pip install pyrovelocity==0.3.0b3 +# RUN pip install pyrovelocity==0.3.0b4 ARG tag ENV FLYTE_INTERNAL_IMAGE $tag diff --git a/docs/source/notebooks/pyrovelocity_colab_template.ipynb b/docs/source/notebooks/pyrovelocity_colab_template.ipynb index ae5f61531..309778568 100644 --- a/docs/source/notebooks/pyrovelocity_colab_template.ipynb +++ b/docs/source/notebooks/pyrovelocity_colab_template.ipynb @@ -70,7 +70,7 @@ } ], "source": [ - "pyrovelocity_version = \"0.3.0b3\"\n", + "pyrovelocity_version = \"0.3.0b4\"\n", "pyrovelocity_colab_script_url = (\n", " \"https://storage.googleapis.com/pyrovelocity/data/scripts/\"\n", " + f\"pyrovelocity-colab-{pyrovelocity_version}-Linux-x86_64.sh\"\n", diff --git a/pyproject.toml b/pyproject.toml index b1ca49285..9115ebafc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyrovelocity" -version = "0.3.0b3" +version = "0.3.0b4" packages = [{ include = "pyrovelocity", from = "src" }] description = "A multivariate RNA Velocity model to estimate future cell states with uncertainty using probabilistic modeling with pyro." authors = ["pyrovelocity team"] diff --git a/scripts/conda b/scripts/conda index 69c4e3e47..e288e59d4 100755 --- a/scripts/conda +++ b/scripts/conda @@ -3,7 +3,7 @@ set -euo pipefail PACKAGE_NAME="pyrovelocity" -PACKAGE_VERSION="0.3.0b3" +PACKAGE_VERSION="0.3.0b4" CONDA_BUILD_STRING="pyhff70e4c" CONDA_BUILD_NUMBER="0" # CONDA_CHANNEL_LABEL="pyrovelocity_dev" @@ -32,7 +32,7 @@ Example: ./conda \\ --name pyrovelocity \\ - --version 0.3.0b3.dev1 \\ + --version 0.3.0b4.dev1 \\ --build-string pyhff70e4c \\ --build-number 0 \\ --label pyrovelocity_dev