create additional install only free-threaded assets#1010
Closed
jjhelmus wants to merge 3 commits intoastral-sh:mainfrom
Closed
create additional install only free-threaded assets#1010jjhelmus wants to merge 3 commits intoastral-sh:mainfrom
jjhelmus wants to merge 3 commits intoastral-sh:mainfrom
Conversation
Closes astral-sh#536. --------- Co-authored-by: Zanie Blue <contact@zanie.dev>
All for a multiple install_only suffixes in each release.
Contributor
Author
|
Tested this by patching locally to skip downloading most artifacts: diff --git a/src/github.rs b/src/github.rs
index c761853..816b708 100644
--- a/src/github.rs
+++ b/src/github.rs
@@ -264,6 +264,15 @@ pub async fn command_fetch_release_distributions(args: &ArgMatches) -> Result<()
|| artifact.name.contains("dockerbuild")
|| artifact.name.contains("crate-")
|| artifact.name.contains("image-")
+ || artifact.name.contains("linux")
+ || artifact.name.contains("windows")
+ || artifact.name.contains("x86_64")
+ || artifact.name.contains("vcvars")
+ || artifact.name.contains("3.10")
+ || artifact.name.contains("3.11")
+ || artifact.name.contains("3.15")
+ || artifact.name.contains("debug")
{
continue;
}Then running : |
jjhelmus
commented
Mar 17, 2026
Contributor
Author
|
This change will create the I'll update and potentially go with a different approach. |
zanieb
approved these changes
Mar 18, 2026
Contributor
Author
|
closing in favor of #1014 |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Create install_only assets for the free-threaded builds of Python 3.13+. This is in addition to the install_only assets for the GIL configuration of these builds.
Based upon #537
Closes #536