-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix job skip condition by contains() check (#47)
This PR changes the CI pipeline to be based on uv. It also disables abi3audit properly for all Python versions earlier than 3.12 by checking if the version from the CI job matrix is in the abi3audit candidate list. It seems that Windows jobs take longer now than before, though, which warrants an investigation. Also for the moment disables the recursive stubgen in the nanobind_example again with a git patch, since that hasn't landed yet.
- Loading branch information
1 parent
b2df97e
commit d378ffc
Showing
2 changed files
with
31 additions
and
26 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/src/BUILD b/src/BUILD | ||
index 5562dca..95e210e 100644 | ||
--- a/src/BUILD | ||
+++ b/src/BUILD | ||
@@ -20,6 +20,6 @@ nanobind_stubgen( | ||
name = "nanobind_example_ext_stubgen", | ||
module = ":nanobind_example_ext", | ||
marker_file = "src/py.typed", | ||
- output_directory = "src", | ||
- recursive = True, | ||
+# output_directory = "src", | ||
+# recursive = True, | ||
) |