Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Nov 9, 2023
1 parent c51e79b commit 69b6085
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 &&
Expand Down Expand Up @@ -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:
Expand Down
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
4 changes: 3 additions & 1 deletion docs/releases/0.20.0.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit 69b6085

Please sign in to comment.