Heribert Füchtenhans
Heribert Füchtenhans
I built a solution that works in my cx_freeze setup scripts. I use a variable BUILDPATH to specify the directory for my distribution. After the call of the cx_freeze setup...
The above shutil doesn't find the tcl8 directory if you use a python virtual environment. So I modified it to work in venv: ``` for mypath in sys.path: if os.path.exists(os.path.join(mypath,...
This is a hook for that problem. I inserted it into hooks/__init__.py in the new pre release 6.12.0.dev1 ``` def load_ttkbootstrap(finder: ModuleFinder, module: Module) -> None: """The ttkbootstrap package needs...
I'm using pythonnet 3.0.0.rc4. In the development build cx_freeze finds the dll.
Marcelo Duarte modified the latest cx_freeze development release 6.15.0.dev1 so that the tkinter hook now copies the tcl8 directory needed for ttkbootstrap. You can get it with: pip install --upgrade...
I use these steps to create an Icon file, a resource file and add them all to the exe. Then the Details page of the exe file is also filled:...
I have the same problem. It seems to be a bug in tkinter when converting the float to string for tk. You can test it with this piece of code....
During migration of one of my projects to customertkinter i steped into the same problem again. I'm on Winbdows 10, Python 3.11.6 and newest custometkinter. The problem occurs when using...
I found that you need the float value, otherwise scrollbars arn't working. I changed the code above to: ``` def _apply_widget_scaling(self, value: Union[int, float]) -> Union[float, int]: assert self.__scaling_type ==...
v0.0.0-20230906093706-8b037fe6a7bd works. I get the example compiled.