Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch release 0.1.1 - bump dask and distributed to 2022.6.1 #310

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
4 changes: 2 additions & 2 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down