-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use PyO3
abi3-py38
feature for ABI stable wheels
Produces ABI stable wheels for Python >=3.8. This simplifies the build/distribution by generating wheels that are forward compatible.
- Loading branch information
Showing
4 changed files
with
26 additions
and
23 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 |
---|---|---|
@@ -1,29 +1,30 @@ | ||
permissions: | ||
contents: read | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
|
||
name: Test | ||
permissions: | ||
contents: read | ||
|
||
env: | ||
# Disable incremental compilation for faster from-scratch builds | ||
CARGO_INCREMENTAL: 0 | ||
|
||
jobs: | ||
Test: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
- uses: actions/checkout@v4 | ||
- run: rustup update | ||
|
||
- name: Check formatting | ||
run: cargo fmt --all --manifest-path ./oxbow/Cargo.toml -- --check | ||
run: cargo fmt --all --check | ||
|
||
- name: Download fixtures | ||
run: cd fixtures && wget -i list.txt | ||
|
||
- name: Run cargo test | ||
uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --manifest-path ./oxbow/Cargo.toml | ||
run: cargo test |
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 |
---|---|---|
|
@@ -10,7 +10,7 @@ authors = [ | |
{ name = "Oxbow Developers", email = "[email protected]" } | ||
] | ||
license = { text = "MIT OR Apache-2.0" } | ||
requires-python = ">=3.7" | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: Rust", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
|
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