-
-
Notifications
You must be signed in to change notification settings - Fork 555
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6e57f1
commit 089e570
Showing
4 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,9 @@ jobs: | |
- os: macos-latest | ||
arch: alt | ||
alt_arch_name: arm64 | ||
- os: ubuntu-latest | ||
platform: linux | ||
alt_arch_name: aarch64 | ||
exclude: | ||
- os: windows-latest | ||
arch: alt | ||
|
@@ -52,14 +55,14 @@ jobs: | |
|
||
- name: Set up QEMU | ||
if: matrix.os == 'ubuntu-latest' | ||
uses: docker/setup-qemu-action@v1 | ||
uses: docker/setup-qemu-action@v3 | ||
with: | ||
platforms: all | ||
|
||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-*" | ||
CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*" | ||
CIBW_BEFORE_BUILD: > | ||
pip install setuptools-rust cython && | ||
rustup default nightly && | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,19 +109,16 @@ River is intended to work with **Python 3.8 and above**. Installation can be don | |
pip install river | ||
``` | ||
|
||
There are [wheels available](https://pypi.org/project/river/#files) for Linux, MacOS, and Windows, which means that you most probably won't have to build River from source. | ||
There are [wheels available](https://pypi.org/project/river/#files) for Linux, MacOS, and Windows. This means you most probably won't have to build River from source. | ||
|
||
You can install the latest development version from GitHub as so: | ||
|
||
```sh | ||
pip install git+https://github.com/online-ml/river --upgrade | ||
pip install git+ssh://[email protected]/online-ml/river.git --upgrade # using SSH | ||
``` | ||
|
||
Or, through SSH: | ||
|
||
```sh | ||
pip install git+ssh://[email protected]/online-ml/river.git --upgrade | ||
``` | ||
This method requires having Cython and Rust installed on your machine. | ||
|
||
## 🔮 Features | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,12 +10,9 @@ You can install the latest development version from GitHub, as so: | |
|
||
```sh | ||
pip install git+https://github.com/online-ml/river --upgrade | ||
pip install git+ssh://[email protected]/online-ml/river.git --upgrade # using SSH | ||
``` | ||
|
||
Or, through SSH: | ||
|
||
```sh | ||
pip install git+ssh://[email protected]/online-ml/river.git --upgrade | ||
``` | ||
This method requires having Cython and Rust installed on your machine. | ||
|
||
Feel welcome to [open an issue on GitHub](https://github.com/online-ml/river/issues/new) if you are having any trouble. |