diff --git a/MODULE.bazel b/MODULE.bazel index 73a5869b8..b451f73ef 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -4,7 +4,7 @@ pyrovelocity MODULE module( name = "pyrovelocity", - version = "0.3.0b1", + version = "0.3.0b2", compatibility_level = 1, ) diff --git a/Makefile b/Makefile index 3f7f3e8bd..eb245d91f 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.2.1b1 -NEXT_VERSION := 0.3.0b1 +PREVIOUS_VERSION := 0.3.0b1 +NEXT_VERSION := 0.3.0b2 VERSION_FILES := \ pyproject.toml \ conda/colab/construct.yaml \ diff --git a/conda/colab/construct.yaml b/conda/colab/construct.yaml index 6d4d0a3a6..af1398194 100644 --- a/conda/colab/construct.yaml +++ b/conda/colab/construct.yaml @@ -1,5 +1,5 @@ name: pyrovelocity-colab -version: 0.3.0b1 +version: 0.3.0b2 channels: - pytorch diff --git a/containers/gpu.Dockerfile b/containers/gpu.Dockerfile index 043bd3c5f..ae3869cc3 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.0b1 +# RUN pip install pyrovelocity==0.3.0b2 ARG tag ENV FLYTE_INTERNAL_IMAGE $tag diff --git a/containers/pkg.Dockerfile b/containers/pkg.Dockerfile index 5ea855a62..60295496d 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.0b1 +# RUN pip install pyrovelocity==0.3.0b2 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 c53023d26..a059b0cea 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.0b1\"\n", + "pyrovelocity_version = \"0.3.0b2\"\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 aa7ff31fa..9100ebced 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyrovelocity" -version = "0.3.0b1" +version = "0.3.0b2" 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 79c865cc9..f59c7434e 100755 --- a/scripts/conda +++ b/scripts/conda @@ -3,7 +3,7 @@ set -euo pipefail PACKAGE_NAME="pyrovelocity" -PACKAGE_VERSION="0.3.0b1" +PACKAGE_VERSION="0.3.0b2" CONDA_BUILD_STRING="pyhff70e4c" CONDA_BUILD_NUMBER="0" # CONDA_CHANNEL_LABEL="pyrovelocity_dev" @@ -32,7 +32,7 @@ Example: ./conda \\ --name pyrovelocity \\ - --version 0.3.0b1.dev1 \\ + --version 0.3.0b2.dev1 \\ --build-string pyhff70e4c \\ --build-number 0 \\ --label pyrovelocity_dev