Skip to content

Commit

Permalink
Prepare release (#866)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAugspurger authored Oct 16, 2021
1 parent 30b3dea commit 2051fb6
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release

on:
release:
types:
- created

jobs:
release:
name: release
runs-on: ubuntu-latest
if: ${{ github.repository }} == 'dask/dask-ml'
steps:
- uses: actions/checkout@v2

- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: "3.x"

- name: Install release dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish package
env:
TWINE_USERNAME: ${{ secrets.PYPI_STACUTILS_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_STACUTILS_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
5 changes: 5 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Version 2021.10.16
~~~~~~~~~~~~~~~~~~

* Added support for scikit-learn 1.0.0. scikit-learn 1.0.0 is now the minimum-supported version.

Version 1.9.0
~~~~~~~~~~~~~

Expand Down

0 comments on commit 2051fb6

Please sign in to comment.