Skip to content

Commit

Permalink
chore(version): 0.2.0b22
Browse files Browse the repository at this point in the history
Signed-off-by: Cameron Smith <cameron.ray.smith@gmail.com>
  • Loading branch information
cameronraysmith committed Jul 11, 2024
1 parent dba30d9 commit 447821d
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pyrovelocity MODULE

module(
name = "pyrovelocity",
version = "0.2.0b21",
version = "0.2.0b22",
compatibility_level = 1,
)

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -915,8 +915,8 @@ approve-prs: ## Approve github pull requests from bots: PR_ENTRIES="2-5 10 12-18
fi; \
done

PREVIOUS_VERSION := 0.2.0b20
NEXT_VERSION := 0.2.0b21
PREVIOUS_VERSION := 0.2.0b21
NEXT_VERSION := 0.2.0b22
VERSION_FILES := \
pyproject.toml \
conda/colab/construct.yaml \
Expand Down
2 changes: 1 addition & 1 deletion conda/colab/construct.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: pyrovelocity-colab
version: 0.2.0b21
version: 0.2.0b22

channels:
- pytorch
Expand Down
2 changes: 1 addition & 1 deletion containers/gpu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ COPY . /root
# development
RUN pip install --no-deps -e .
# distribution
# RUN pip install pyrovelocity==0.2.0b21
# RUN pip install pyrovelocity==0.2.0b22

ARG tag
ENV FLYTE_INTERNAL_IMAGE $tag
2 changes: 1 addition & 1 deletion containers/pkg.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ COPY . /root
# development
RUN pip install --no-deps -e .
# distribution
# RUN pip install pyrovelocity==0.2.0b21
# RUN pip install pyrovelocity==0.2.0b22

ARG tag
ENV FLYTE_INTERNAL_IMAGE $tag
2 changes: 1 addition & 1 deletion docs/source/notebooks/pyrovelocity_colab_template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
}
],
"source": [
"pyrovelocity_version = \"0.2.0b21\"\n",
"pyrovelocity_version = \"0.2.0b22\"\n",
"pyrovelocity_colab_script_url = \\\n",
"\"https://storage.googleapis.com/pyrovelocity/data/scripts/\" + \\\n",
"f\"pyrovelocity-colab-{pyrovelocity_version}-Linux-x86_64.sh\"\n",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyrovelocity"
version = "0.2.0b21"
version = "0.2.0b22"
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"]
Expand Down
4 changes: 2 additions & 2 deletions scripts/conda
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -euo pipefail

PACKAGE_NAME="pyrovelocity"
PACKAGE_VERSION="0.2.0b21"
PACKAGE_VERSION="0.2.0b22"
CONDA_BUILD_STRING="pyhff70e4c"
CONDA_BUILD_NUMBER="0"
CONDA_CHANNEL_LABEL="pyrovelocity_dev"
Expand Down Expand Up @@ -31,7 +31,7 @@ Example:
./conda \\
--name pyrovelocity \\
--version 0.2.0b21.dev1 \\
--version 0.2.0b22.dev1 \\
--build-string pyhff70e4c \\
--build-number 0 \\
--label pyrovelocity_dev
Expand Down

0 comments on commit 447821d

Please sign in to comment.