-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Use build-system pybind11 over Git submodule (#313)
build: Add support for NumPy 2.0 wheels * Update lower bound on build-system pybind11 to v2.12.0 to add support for compiling for NumPy 2.0. - c.f. https://github.com/pybind/pybind11/releases/tag/v2.12.0 * Remove pybind11 submodule to use build-system instead. ci: List Python packages installed before testing * Add an easy to parse log of the environment used for each test, which is useful for debugging differences between CI jobs seperated in time.
- Loading branch information
1 parent
5d42a0e
commit 1a4f68c
Showing
5 changed files
with
4 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
[submodule "fastjet"] | ||
path = extern/fastjet-core | ||
url = https://gitlab.com/fastjet/fastjet.git | ||
[submodule "pybind11"] | ||
path = pybind11 | ||
url = https://github.com/pybind/pybind11.git | ||
[submodule "fastjet-contrib"] | ||
path = extern/fastjet-contrib | ||
url = https://github.com/cms-externals/fastjet-contrib.git |
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,6 @@ | ||
graft src | ||
graft tests | ||
graft extern | ||
graft pybind11 | ||
global-exclude .git .gitmodules | ||
include LICENSE README.md pyproject.toml setup.py setup.cfg patch_clustersequence.txt | ||
exclude .cirrus.yml |
Submodule pybind11
deleted from
8a099e
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