-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into kyle/flatgeobuf-iterator
- Loading branch information
Showing
105 changed files
with
1,126 additions
and
589 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 |
---|---|---|
|
@@ -103,9 +103,7 @@ jobs: | |
# - uses: actions/checkout@v4 | ||
# with: | ||
# submodules: "recursive" | ||
# # We use nightly for now so that we can pass RUSTFLAGS below to work around | ||
# # https://github.com/geoarrow/geoarrow-rs/issues/716 | ||
# - uses: dtolnay/rust-toolchain@nightly | ||
# - uses: dtolnay/rust-toolchain@stable | ||
# - uses: Swatinem/rust-cache@v2 | ||
# - uses: prefix-dev/[email protected] | ||
# with: | ||
|
@@ -118,6 +116,6 @@ jobs: | |
# echo "PKG_CONFIG_PATH=$(pwd)/build/.pixi/envs/default/lib/pkgconfig" >> "$GITHUB_ENV" | ||
# echo "LD_LIBRARY_PATH=$(pwd)/build/.pixi/envs/default/lib" >> "$GITHUB_ENV" | ||
# - name: Build benchmarks with no features | ||
# run: RUSTFLAGS="-Zinline-mir=no" cargo bench --no-run | ||
# run: cargo bench --no-run | ||
# - name: Build benchmarks with all features | ||
# run: RUSTFLAGS="-Zinline-mir=no" cargo bench --no-run --all-features | ||
# run: cargo bench --no-run --all-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
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 |
---|---|---|
|
@@ -50,10 +50,7 @@ jobs: | |
|
||
- name: Build wheels | ||
uses: PyO3/maturin-action@v1 | ||
env: | ||
RUSTFLAGS: "-Zinline-mir=no" | ||
with: | ||
rust-toolchain: nightly | ||
target: ${{ matrix.platform.target }} | ||
# As of Nov 2024, it was necessary to manually specify -i 3.13 to get | ||
# maturin to find the executable. --find-interpreter did not find it. | ||
|
@@ -88,10 +85,7 @@ jobs: | |
|
||
- name: Build wheels - ${{ matrix.platform.target }} | ||
uses: PyO3/maturin-action@v1 | ||
env: | ||
RUSTFLAGS: "-Zinline-mir=no" | ||
with: | ||
rust-toolchain: nightly | ||
target: ${{ matrix.platform.target }} | ||
args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 -m python/geoarrow-io/Cargo.toml | ||
sccache: "true" | ||
|
@@ -124,10 +118,7 @@ jobs: | |
|
||
- name: Build wheels | ||
uses: PyO3/maturin-action@v1 | ||
env: | ||
RUSTFLAGS: "-Zinline-mir=no" | ||
with: | ||
rust-toolchain: nightly | ||
target: ${{ matrix.target }} | ||
args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -m python/geoarrow-io/Cargo.toml | ||
|
||
|
@@ -162,10 +153,8 @@ jobs: | |
# - name: Build wheels | ||
# uses: PyO3/maturin-action@v1 | ||
# with: | ||
# rust-toolchain: nightly | ||
# target: ${{ matrix.target }} | ||
# manylinux: musllinux_1_2 | ||
# TODO: update rustflags env | ||
# args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 -m python/geoarrow-io/Cargo.toml | ||
|
||
# - name: Install built wheel | ||
|
@@ -206,10 +195,8 @@ jobs: | |
# - name: Build wheels | ||
# uses: PyO3/maturin-action@v1 | ||
# with: | ||
# rust-toolchain: nightly | ||
# target: ${{ matrix.platform.target }} | ||
# manylinux: musllinux_1_2 | ||
# TODO: update rustflags env | ||
# args: --release --out dist -i 3.9 -i 3.10 -i 3.11 -i 3.12 -i 3.13 -m python/geoarrow-io/Cargo.toml | ||
|
||
# - uses: uraimo/[email protected] | ||
|
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
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
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
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
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,7 +1,7 @@ | ||
|
||
[package] | ||
name = "geoarrow" | ||
version = "0.4.0-beta.2" | ||
version = "0.4.0-beta.3" | ||
authors = ["Kyle Barron <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
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
Oops, something went wrong.