-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
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
Update tkinter to use Tk 8.6.15 or (better) Tk 9.0 #124111
Comments
See also #104568. |
There are 2 items on that overview issue with individual issues. The first has a solution merged. The second was waiting to know whether there would be an 8.7. "The TclTk project has decided that there will be no release of the 8.7 branches." Do you have a link? "Tk 9 offers many improvements over Tk 8," Is there a summary page? I am particularly curious if full unicode support was added. If so, I would want 9.0 to at least be an option with our installers, as the lack thereof is the biggest problem with tk for use with IDLE. |
Unfortunately, this decision was made by the Tcl Core Team (TCT) by consensus, not by our usual governance process which involves writing and voting on a TIP.
The Tcl summary is here. Tk 9.0 was created as a continuation of Tk 8.7 (unlike Tcl 9.0, which has signficant differences from 8.7).
Yes, Tcl 9.0 has full unicode support. That was one of the biggest issues, of course. Switching to 9.0 means no more CESU-8. Moreover, if tkinter starts using Tk 9.0 then, as far as I can tell, that would mean that a majority of Tk users would be using Tk 9.0. |
I think that this should be split on several parts.
Tcl/Tk 9.0 is a good news, and I look forward to using it. |
Can it make into 3.12.7 ? |
I hope on this, but we still have not updated the bundled version on Windows to 8.6.14 (see #116145). |
Tcl/Tk 9.0 is available in 3.13 on windows? |
No. AFAIK, tk9.0 is still in candidate stage, not officially released. In any case, not in main yet. |
Terry,
Tk 9.0 has been officially released and is the main branch of the Tk repository. It was released September 26. The Tk repository has a branch named core-9-0-0-rc containing the code used for the release, and the tarball is available in the usual place (https://www.tcl.tk/software/tcltk/download.html).
However, PR #124156 has not been merged into cpython yet.
- Marc
…On Fri, Nov 8, 2024 at 6:52 PM Terry Jan Reedy ***@***.***> wrote:
No. AFAIK, tk9.0 is still in candidate stage, not officially released. In
any case, not in main yet.
—
Reply to this email directly, view it on GitHub
<#124111 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAJ6CP2RW266GA3VQAYNWGLZ7VMFLAVCNFSM6AAAAABOIEYSFWVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDINRVHE2TCMZZGA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
My comment was based on your posts of Sept 16 and early posts on the PR. Thank you for the update. What, then, is stopping 9.0 on main? I could not really tell from the PR. Like Serhiy, I am really looking forward to trying it out. |
I don't think there is anything stopping it. PR #124156 is in the "awaiting merge" state. One possible issue is that the Windows port of Tcl 9.0 puts libtommath in a separate DLL, which complicates the Python distribution. But there are build options available which will statically link libtommath into the Tcl DLL. So that issue seems to have a reasonable workaround. |
…ythonGH-124156) (cherry picked from commit 47cbf03)
I'm interested by a backport of the change 47cbf03 to 3.12 and 3.13 branches. In Fedora Rawhide, we have Tcl/Tk 9 and Python 3.12 and 3.13. It would be nice to support recent Tcl/Tk in stable Python versions. I started by creating PR gh-127364 which is a simple backport from main to 3.13 branch: there is no merge conflict! cc @hroncok |
With TCL 9, CPython's _tkinter.c thread support detection doesn't seem to work: Lines 586 to 587 in f802c8b
I'm guessing this is due to documented TCL change:
Current (main) Crash goes away by forcing |
Feature or enhancement
Proposal:
This issue is being opened as a prerequisite for a PR which will update _tkinter.c and Lib/test/test_tkinter so that they work with both Tk 8.6.15 and Tk 9.0.
Both Tk 8.6.15 and Tk 9.0 currently have release candidates available and will be released soon. The TclTk project has decided that there will be no release of the 8.7 branches. Tcl 9 and Tk 9 are the current development branches (both named main in the fossil repository.)
Tk 9 offers many improvements over Tk 8, and both TclTk and Python would benefit from having tkinter support for Tk 9.0.
Has this already been discussed elsewhere?
No response given
Links to previous discussion of this feature:
No response
Linked PRs
The text was updated successfully, but these errors were encountered: