From 926993a28c1703a3dd1e772bb082eb557fecf40b Mon Sep 17 00:00:00 2001 From: Cameron Smith Date: Tue, 13 Aug 2024 10:47:41 -0400 Subject: [PATCH] chore(version): `0.3.0b3` 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 b451f73ef..853ba0e22 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -4,7 +4,7 @@ pyrovelocity MODULE module( name = "pyrovelocity", - version = "0.3.0b2", + version = "0.3.0b3", compatibility_level = 1, ) diff --git a/Makefile b/Makefile index eb245d91f..cb6e99d08 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.0b1 -NEXT_VERSION := 0.3.0b2 +PREVIOUS_VERSION := 0.3.0b2 +NEXT_VERSION := 0.3.0b3 VERSION_FILES := \ pyproject.toml \ conda/colab/construct.yaml \ diff --git a/conda/colab/construct.yaml b/conda/colab/construct.yaml index b5be6ca10..3731be98d 100644 --- a/conda/colab/construct.yaml +++ b/conda/colab/construct.yaml @@ -1,5 +1,5 @@ name: pyrovelocity-colab -version: 0.3.0b2 +version: 0.3.0b3 channels: - pytorch diff --git a/containers/gpu.Dockerfile b/containers/gpu.Dockerfile index ae3869cc3..470ab6e68 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.0b2 +# RUN pip install pyrovelocity==0.3.0b3 ARG tag ENV FLYTE_INTERNAL_IMAGE $tag diff --git a/containers/pkg.Dockerfile b/containers/pkg.Dockerfile index 60295496d..a2429c953 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.0b2 +# RUN pip install pyrovelocity==0.3.0b3 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 a059b0cea..ae5f61531 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.0b2\"\n", + "pyrovelocity_version = \"0.3.0b3\"\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 2f354de50..b1ca49285 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyrovelocity" -version = "0.3.0b2" +version = "0.3.0b3" 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 f59c7434e..69c4e3e47 100755 --- a/scripts/conda +++ b/scripts/conda @@ -3,7 +3,7 @@ set -euo pipefail PACKAGE_NAME="pyrovelocity" -PACKAGE_VERSION="0.3.0b2" +PACKAGE_VERSION="0.3.0b3" CONDA_BUILD_STRING="pyhff70e4c" CONDA_BUILD_NUMBER="0" # CONDA_CHANNEL_LABEL="pyrovelocity_dev" @@ -32,7 +32,7 @@ Example: ./conda \\ --name pyrovelocity \\ - --version 0.3.0b2.dev1 \\ + --version 0.3.0b3.dev1 \\ --build-string pyhff70e4c \\ --build-number 0 \\ --label pyrovelocity_dev