-
Notifications
You must be signed in to change notification settings - Fork 21
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
Please add support for x86 systems #8
Open
moth1995
wants to merge
28
commits into
pmgagne:master
Choose a base branch
from
Eliav2:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Linking to the fork itself minimizes confusion for PyPI users.
Tix was depreciated in Python 3.6 and removed in Python3.13. In the original code, it would default to importing Tix and if it could not, it would attempt to import tix from tkinter. Instead, we just load tkinter. Further, we no longer create a TixTk class as it is no longer needed. Tix has been unsupported for 10 years.
Remove Support for Tix
Update comments to remove mention of Tix. Tix has not been updated in 10 years and is removed in python3.13.
Reverting ReadMe temporarily for the purpose of a pull request. Couldn't find a quick better way.
Update README.md
Remove Tix support
Exclude unused platform-specific tkdnd files in pyinstaller hook
This includes some enhancements mentioned in other repositories. Includes all binaries recently built by main Tkdnd project. Includes ARM binaries from "tkinterdnd-universal"
Including win86 support since these binaries are still built by the TkDnd maintainer.
Update binaries more arch support
Update binaries/ ARM support
Previous change failed to account for new directories and new directory changes. This resolves the problem.
Accidentally omitted a comma.
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.
I know its an old topic, but we need support for x86 system, it would be really useful if you can provide a solution, i saw the binary files from the tkdnd project and tried to replace the ones that are located in the x64 folder but couldnt compile properly, i have this error when i try to run your example
`
py test.py
Traceback (most recent call last):
File "C:\Users\marco\AppData\Local\Programs\Python\Python38-32\lib\site-packages\tkinterdnd2\TkinterDnD.py", line 53, in _require
TkdndVersion = tkroot.tk.call('package', 'require', 'tkdnd')
_tkinter.TclError: couldn't load library "C:\Users\marco\AppData\Local\Programs\Python\Python38-32\lib\site-packages\tkinterdnd2\tkdnd\win64/libtkdnd2.9.2.dll": Bad exe format. Possibly a 32/64-bit mismatch.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "test.py", line 5, in
root = TkinterDnD.Tk() # notice - use this instead of tk.Tk()
File "C:\Users\marco\AppData\Local\Programs\Python\Python38-32\lib\site-packages\tkinterdnd2\TkinterDnD.py", line 285, in init
self.TkdndVersion = _require(self)
File "C:\Users\marco\AppData\Local\Programs\Python\Python38-32\lib\site-packages\tkinterdnd2\TkinterDnD.py", line 55, in _require
raise RuntimeError('Unable to load tkdnd library.')
RuntimeError: Unable to load tkdnd library.
C:\Users\marco\Documents\Visual Studio Code\Skin_Boot_Assigner>
`
thanks a lot