-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): Integrate Python into more CI workflows (#359)
This PR adds Python to the coverage and verify workflows (except on centos7, where the image isn't set up for a supported version of Python yet). There were also some housekeeping issues identified by various logs that I noticed in the process (e.g., fixing the Python dev version format, ensuring that CMAKE_BIN is respected in bootstrap.py).
- Loading branch information
1 parent
28c5b7b
commit b3c952a
Showing
11 changed files
with
119 additions
and
36 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
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 |
---|---|---|
|
@@ -22,15 +22,19 @@ dynamic = ["version"] | |
readme = "README.md" | ||
description = "Python bindings to the nanoarrow C library" | ||
authors = [{name = "Apache Arrow Developers", email = "[email protected]"}] | ||
maintainers = [{name = "Apache Arrow Developers", email = "[email protected]"}] | ||
license = {text = "Apache-2.0"} | ||
requires-python = ">=3.8" | ||
|
||
[project.optional-dependencies] | ||
test = ["pyarrow", "pytest", "numpy"] | ||
verify = ["pytest", "numpy"] | ||
|
||
[project.urls] | ||
homepage = "https://arrow.apache.org" | ||
repository = "https://github.com/apache/arrow-nanoarrow" | ||
Homepage = "https://arrow.apache.org" | ||
Repository = "https://github.com/apache/arrow-nanoarrow" | ||
Issues = "https://github.com/apache/arrow-nanoarrow/issues" | ||
Changelog = "https://github.com/apache/arrow-nanoarrow/blob/main/CHANGELOG.md" | ||
|
||
[build-system] | ||
requires = [ | ||
|
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