From 69b6085adc587443934ff54bfcee2ed62851d58f Mon Sep 17 00:00:00 2001 From: Max Halford Date: Thu, 9 Nov 2023 09:29:20 +0100 Subject: [PATCH] fix --- .github/workflows/pypi.yml | 8 ++++---- CONTRIBUTING.md | 3 +++ docs/releases/0.20.0.md | 4 +++- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 7557de4dab..0497cb707a 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -62,7 +62,7 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v2.12.3 env: - CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*" + CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*" CIBW_BEFORE_BUILD: > pip install setuptools-rust cython && rustup default nightly && @@ -96,10 +96,10 @@ jobs: name: Build source distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - - name: Build sdist - run: pipx run build --sdist + - name: Build + run: poetry build - uses: actions/upload-artifact@v2 with: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6a7f992e30..9058023527 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -190,6 +190,9 @@ make execute-notebooks ```sh RIVER_VERSION=$(python -c "import river; print(river.__version__)") echo $RIVER_VERSION +``` + +```sh git tag $RIVER_VERSION git push origin $RIVER_VERSION ``` diff --git a/docs/releases/0.20.0.md b/docs/releases/0.20.0.md index 48406246ea..53bfa71c5e 100644 --- a/docs/releases/0.20.0.md +++ b/docs/releases/0.20.0.md @@ -1,6 +1,8 @@ # 0.20.0 - 2023-11-09 -River's mini-batch methods now support pandas v2. In particular, River conforms to pandas' new sparse API. +- River's mini-batch methods now support pandas v2. In particular, River conforms to pandas' new sparse API. +- Dropped support for Python 3.8. +- Added support for Python 3.12. ## anomaly