-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump python version to 0.3.0-beta.1 (#758)
- Loading branch information
1 parent
dec52fa
commit 1e1e223
Showing
9 changed files
with
44 additions
and
25 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -2,6 +2,17 @@ | |
members = ["geoarrow-core", "geoarrow-io"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
authors = ["Kyle Barron <[email protected]>"] | ||
version = "0.3.0-beta.1" | ||
edition = "2021" | ||
homepage = "https://geoarrow.org/geoarrow-rs/" | ||
repository = "https://github.com/geoarrow/geoarrow-rs" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["python", "arrow", "geospatial"] | ||
categories = ["wasm", "science::geo"] | ||
rust-version = "1.80" | ||
|
||
[workspace.dependencies] | ||
arrow = "52" | ||
arrow-array = "52" | ||
|
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,15 +1,16 @@ | ||
[package] | ||
name = "geoarrow-rust-core" | ||
version = "0.3.0-alpha.1" | ||
authors = ["Kyle Barron <[email protected]>"] | ||
edition = "2021" | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
edition = { workspace = true } | ||
description = "Efficient, vectorized geospatial operations in Python." | ||
readme = "README.md" | ||
repository = "https://github.com/geoarrow/geoarrow-rs" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["python", "arrow", "geospatial"] | ||
categories = ["wasm", "science::geo"] | ||
rust-version = "1.80" | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
keywords = { workspace = true } | ||
categories = { workspace = true } | ||
rust-version = { workspace = true } | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[lib] | ||
|
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,15 +1,16 @@ | ||
[package] | ||
name = "geoarrow-rust-io" | ||
version = "0.3.0-alpha.1" | ||
authors = ["Kyle Barron <[email protected]>"] | ||
edition = "2021" | ||
description = "Efficient, vectorized geospatial operations in Python." | ||
version = { workspace = true } | ||
authors = { workspace = true } | ||
edition = { workspace = true } | ||
description = "Read and write geospatial file formats to and from GeoArrow." | ||
readme = "README.md" | ||
repository = "https://github.com/geoarrow/geoarrow-rs" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["python", "arrow", "geospatial"] | ||
categories = ["wasm", "science::geo"] | ||
rust-version = "1.80" | ||
repository = { workspace = true } | ||
homepage = { workspace = true } | ||
license = { workspace = true } | ||
keywords = { workspace = true } | ||
categories = { workspace = true } | ||
rust-version = { workspace = true } | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[lib] | ||
|
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 @@ | ||
# `geoarrow.rust.io` | ||
|
||
Python bindings to `geoarrow-rs` to read and write geospatial file formats. | ||
Read and write geospatial file formats to and from GeoArrow. | ||
|
||
## Documentation | ||
|
||
Refer to the documentation at [geoarrow.github.io/geoarrow-rs/python](https://geoarrow.github.io/geoarrow-rs/python). | ||
Refer to the documentation at [geoarrow.org/geoarrow-rs/python](https://geoarrow.org/geoarrow-rs/python). |
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