Skip to content

Commit

Permalink
0.11.0
Browse files Browse the repository at this point in the history
Former-commit-id: c91bc45
  • Loading branch information
MaxHalford committed May 28, 2022
1 parent 588d9aa commit cd67d46
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
python: [3.8, 3.9, "3.10"]
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-latest]

steps:
- uses: actions/checkout@v2
Expand All @@ -34,7 +34,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install wheel
pip install -e ".[dev]"
pip install -e ".[compat,dev]" codecov
- name: Cache datasets
uses: actions/cache@v2
Expand All @@ -46,4 +46,7 @@ jobs:
run: python -c "from river import datasets; datasets.CreditCard().download(); datasets.Elec2().download()"

- name: pytest
run: pytest -m "not datasets"
run: pytest --cov=river -m "not datasets"

- name: codecov
run: codecov
2 changes: 1 addition & 1 deletion docs/releases/unreleased.md → docs/releases/0.11.0.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Unreleased
# 0.11.0 - 2022-05-28

- Moved all metrics in `metrics.cluster` except `metrics.Silhouette` to [river-extra](https://github.com/online-ml/river-extra).

Expand Down
2 changes: 1 addition & 1 deletion river/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 10, 1)
VERSION = (0, 11, 0)

__version__ = ".".join(map(str, VERSION)) # noqa: F401

0 comments on commit cd67d46

Please sign in to comment.