Skip to content

Commit

Permalink
chore(release): 0.2.0
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 12, 2024
1 parent 7df4ce4 commit e8666a1
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 15 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.0b22",
version = "0.2.0",
compatibility_level = 1,
)

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.0b21
NEXT_VERSION := 0.2.0b22
PREVIOUS_VERSION := 0.2.0b22
NEXT_VERSION := 0.2.0
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.0b22
version: 0.2.0

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.0b22
# RUN pip install pyrovelocity==0.2.0

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.0b22
# RUN pip install pyrovelocity==0.2.0

ARG tag
ENV FLYTE_INTERNAL_IMAGE $tag
13 changes: 8 additions & 5 deletions docs/source/notebooks/pyrovelocity_colab_template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,11 @@
}
],
"source": [
"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",
"pyrovelocity_version = \"0.2.0\"\n",
"pyrovelocity_colab_script_url = (\n",
" \"https://storage.googleapis.com/pyrovelocity/data/scripts/\"\n",
" + f\"pyrovelocity-colab-{pyrovelocity_version}-Linux-x86_64.sh\"\n",
")\n",
"\n",
"!pip install -q condacolab\n",
"import condacolab\n",
Expand Down Expand Up @@ -116,7 +117,7 @@
"\n",
"# change the branch argument from a tag to a branch in development\n",
"git clone \\\n",
"--branch beta \\\n",
"--branch main \\\n",
"https://github.com/pinellolab/pyrovelocity.git"
]
},
Expand All @@ -141,6 +142,7 @@
"source": [
"!pip install --user --no-deps -e pyrovelocity\n",
"from IPython import get_ipython\n",
"\n",
"get_ipython().kernel.do_shutdown(True)"
]
},
Expand Down Expand Up @@ -173,6 +175,7 @@
"outputs": [],
"source": [
"import pyrovelocity\n",
"\n",
"print(pyrovelocity.__file__)\n",
"print(pyrovelocity.__version__)"
]
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.0b22"
version = "0.2.0"
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
7 changes: 4 additions & 3 deletions scripts/conda
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
set -euo pipefail

PACKAGE_NAME="pyrovelocity"
PACKAGE_VERSION="0.2.0b22"
PACKAGE_VERSION="0.2.0"
CONDA_BUILD_STRING="pyhff70e4c"
CONDA_BUILD_NUMBER="0"
CONDA_CHANNEL_LABEL="pyrovelocity_dev"
# CONDA_CHANNEL_LABEL="pyrovelocity_dev"
CONDA_CHANNEL_LABEL="main"
VERBOSE=0
USE_COLOR=true

Expand All @@ -31,7 +32,7 @@ Example:
./conda \\
--name pyrovelocity \\
--version 0.2.0b22.dev1 \\
--version 0.2.0.dev1 \\
--build-string pyhff70e4c \\
--build-number 0 \\
--label pyrovelocity_dev
Expand Down

0 comments on commit e8666a1

Please sign in to comment.