From d361abce0ff5776bf784a564360d34c18b720646 Mon Sep 17 00:00:00 2001 From: ncclementi Date: Tue, 6 Sep 2022 13:30:14 -0400 Subject: [PATCH 1/2] bump version patch release --- recipe/meta.yaml | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 91c1dc4e1a..feeb68ff2d 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,7 +1,7 @@ {% set name = "coiled-runtime" %} {% set version = "0.1.1" + environ.get("VERSION_SUFFIX", '') %} -{% set dask_version = environ.get("DASK_VERSION", "2022.6.0") %} -{% set distributed_version = environ.get("DISTRIBUTED_VERSION", "2022.6.0") %} +{% set dask_version = environ.get("DASK_VERSION", "2022.6.1") %} +{% set distributed_version = environ.get("DISTRIBUTED_VERSION", "2022.6.1") %} package: name: {{ name|lower }} diff --git a/setup.py b/setup.py index 16d7429778..ce23800a3d 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def get_requirements(): setup( name="coiled-runtime", - version="0.1.0", + version="0.1.1", description="Simple and fast way to get started with Dask", url="https://github.com/coiled/coiled-runtime", license="BSD", From 5a6bc638889c21d7c62422eed9cddf95555cffb8 Mon Sep 17 00:00:00 2001 From: ncclementi Date: Tue, 6 Sep 2022 13:36:25 -0400 Subject: [PATCH 2/2] update readme to include pypi release procedure --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5b7acb173b..65435e5520 100644 --- a/README.md +++ b/README.md @@ -163,7 +163,7 @@ not a personal fork**. To issue a new `coiled-runtime` release: -1. Locally update the `coiled-runtime` version and package pinnings specified in `recipe/meta.yaml`. +1. Locally update the `coiled-runtime` version and package pinnings specified in `recipe/meta.yaml` and `setup.py`. - When updating package version pinnings (in particular `dask` and `distributed`) confirm there are no reported large scale stability issues (e.g. deadlocks) or performance regressions on the `dask` / `distributed` issue trackers or offline @@ -193,6 +193,14 @@ git push origin main --tags - For more information on updating conda-forge packages, see the [conda-forge docs](https://conda-forge.org/docs/maintainer/updating_pkgs.html). +6. Upload to PyPI + +``` +git clean -xfd +python setup.py sdist bdist_wheel +twine upload dist/* +``` + ## License [BSD-3](LICENSE)