-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Allow selection of debug build interpreters #11520
base: main
Are you sure you want to change the base?
Conversation
Self::Freethreaded => "t", | ||
Self::FreethreadedDebug => "td", |
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.
I need to confirm it's td
and not dt
still.
----- stdout ----- | ||
|
||
----- stderr ----- | ||
error: No download found for request: cpython-3.13d-[PLATFORM] |
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.
I think something is wrong with generate-download-metadata.py
because this download should exist.
A couple notes on things to do
|
@@ -660,6 +660,79 @@ fn python_install_freethreaded() { | |||
"###); | |||
} | |||
|
|||
#[test] | |||
fn python_install_debug() { |
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.
Copied the freethreaded
test to start
Extends the
PythonVariant
logic to support interpreters with the debug flag enabled.