-
-
Notifications
You must be signed in to change notification settings - Fork 147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Python 3.14 on macOS and GNU Linux #443
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
3985547
Add support for Python 3.14 on GNU Linux
zanieb cd9dbfd
Only apply Apple cross-compile patches on macOS
zanieb dc6a50f
Apply 3.13 apple-cross patch to 3.14
zanieb 6ec00cf
Fix "runshared" patch on 3.14
zanieb 2094ced
Drop `_blake2` from expected extension modules
zanieb 0e5f479
Use `meets_python_minimum_version` for free-threaded safety check
zanieb d5131a5
Add 3.14 to validation
zanieb 871c190
Enable 3.14 for macOS builds
zanieb 7869c0a
Fix libc filtering in the matrix generator
zanieb de2aea3
Add multiple path support to `includes-conditional` and `sources-cond…
zanieb 76d9da1
Add min/max-python-version support to `links-conditional`
zanieb dd15340
Split `_blake` extension configuratoin for 3.14
zanieb 33b1bee
Bump minimum macOS version from 10.9 -> 10.15 on x86_64
zanieb 504468a
Add `_BSD_SOURCE` and `_DEFAULT_SOURCE`
zanieb 9dd6bd5
Set `ac_cv_func_explicit_bzero=no`
zanieb eaa5ab9
Fix cross-compilation for macOS x86_64
zanieb e1c604b
Set `LINUX_NO_EXPLICIT_BZERO` for `_blake` separately
zanieb 9e61d1f
Update expected macosx target and fix patch
zanieb 5fdcd3d
Ignore `test_strftime_y2k` when cross-compiling on Linux for 3.14+
zanieb 2f4fa03
Remove 3.14 cross-path — it matches 3.13
zanieb 7055071
Restore `_blake2` to global expected extension modules
zanieb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,15 @@ | ||
diff --git a/configure.ac b/configure.ac | ||
index bd0221481c5..f2fb52c1efc 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -1605,10 +1605,6 @@ else # shared is disabled | ||
fi | ||
AC_MSG_RESULT([$LDLIBRARY]) | ||
|
||
-if test "$cross_compiling" = yes; then | ||
- RUNSHARED= | ||
-fi | ||
- | ||
# HOSTRUNNER - Program to run CPython for the host platform | ||
AC_MSG_CHECKING([HOSTRUNNER]) | ||
if test -z "$HOSTRUNNER" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a bug that disabled the macOS builds in the matrix if libc labels were requested.