-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
5 changed files
with
20 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -10,6 +10,7 @@ on: | |
paths-ignore: | ||
- 'docs/**' | ||
- 'benchmark/**' | ||
- 'mkdocs.yml' | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
TBD |
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 |
---|---|---|
@@ -1,3 +1,18 @@ | ||
[polars-bio](https://pypi.org/project/polars-bio/) is available on PyPI and can be installed with pip: | ||
```shell | ||
pip install polars-bio | ||
``` | ||
There are binary versions for Linux (x86_64), MacOS (x86_64 and arm64) and Windows (x86_64). | ||
In case of other platforms, you can build polars-bio from source with [maturin](https://github.com/PyO3/maturin): | ||
```shell | ||
RUSTFLAGS="-Ctarget-cpu=native" maturin build --release -m Cargo.toml | ||
``` | ||
and you should see the following output: | ||
```shell | ||
Compiling polars_bio v0.2.11 (/Users/mwiewior/research/git/polars-bio) | ||
Finished `release` profile [optimized] target(s) in 1m 25s | ||
📦 Built wheel for abi3 Python ≥ 3.8 to /Users/mwiewior/research/git/polars-bio/target/wheels/polars_bio-0.2.11-cp38-abi3-macosx_11_0_arm64.whl | ||
|
||
``` | ||
!!! note | ||
Rust compiler and Cargo are required to build the package from source. [rustup](https://rustup.rs/) is the recommended way to install Rust. |
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