-
-
Notifications
You must be signed in to change notification settings - Fork 201
Support prompts indicate freethreaded build status #3554
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
base: main
Are you sure you want to change the base?
Support prompts indicate freethreaded build status #3554
Conversation
…us on free-threaded builds
799358f
to
3d892c1
Compare
…ersion would require a bunch of CI updates
…into update-prompt-with-freethreading-info
WalkthroughAdds conditional logic in Changes
Sequence Diagram(s)sequenceDiagram
participant Importer
participant Init as src_py/__init__.py
participant Env as Environment
participant Sys as sys/sysconfig
Importer->>Init: import module
Init->>Env: check PYGAME_HIDE_SUPPORT_PROMPT
alt prompt visible
Init->>Init: check platform and Python >= 3.13
alt Py_GIL_DISABLED available
Init->>Sys: import sysconfig
Init->>Sys: call platform.python_version() and sys._is_gil_enabled()
Init->>Init: build python_version + ", GIL"/", No GIL"
Init->>Importer: print support prompt with Python {python_version}
Init->>Init: delete temp vars
else not eligible
Init->>Importer: print support prompt with platform.python_version()
end
else prompt hidden
Init-->>Importer: no prompt printed
end
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (19)
✨ Finishing Touches
🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
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.
Actionable comments posted: 1
🧹 Nitpick comments (1)
src_py/__init__.py (1)
411-411
: Nit: use “GIL Enabled/Disabled” instead of “GIL/No GIL” for clarity and consistency.Matches the wording shown in the PR screenshots and reads clearer.
- python_version += f"t, {'' if sys._is_gil_enabled() else 'No '}GIL" + python_version += f"t, GIL {'Enabled' if sys._is_gil_enabled() else 'Disabled'}"
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
src_py/__init__.py
(1 hunks)
🧰 Additional context used
🧬 Code Graph Analysis (1)
src_py/__init__.py (1)
buildconfig/stubs/pygame/base.pyi (1)
get_sdl_version
(17-17)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (10)
- GitHub Check: msys2 (mingw64, x86_64)
- GitHub Check: debug_coverage (ubuntu-24.04, 3.13.5)
- GitHub Check: Debian (Bookworm - 12) [s390x]
- GitHub Check: i686
- GitHub Check: build (ubuntu-22.04)
- GitHub Check: Debian (Bookworm - 12) [ppc64le]
- GitHub Check: Debian (Bookworm - 12) [armv6]
- GitHub Check: aarch64
- GitHub Check: x86_64
- GitHub Check: Debian (Bookworm - 12) [armv7]
🔇 Additional comments (2)
src_py/__init__.py (2)
402-405
: LGTM: scoped import and cleanup.Importing sysconfig only when the prompt is shown and cleaning it up afterward keeps the module namespace tidy. The temporary python_version variable is also correctly deleted.
Also applies to: 417-417
415-415
: LGTM: switched to the computed python_version.Printing the dynamically annotated Python version is correct and keeps the rest of the prompt unchanged.
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.
LGTM, thanks! 🎉
Summary by CodeRabbit