chriskiehl / Gooey

Turn (almost) any Python command line program into a full GUI application with one line
MIT License
20.68k stars 1.02k forks source link

Fix WinOS paths issues in MultiDirChooser #900

Open ChenglongMa opened 10 months ago

ChenglongMa commented 10 months ago

Hello there!

Make sure you've followed the Contributing guidelines before finalizing your pull request.

TL;DR:

Changelog

Since wxPython v4.2.1 has been released, it has fixed the https://github.com/wxWidgets/Phoenix/issues/2120 issue (in v4.2.0).

It's time to roll back to the version before https://github.com/chriskiehl/Gooey/pull/554. Also, this PR is related to https://github.com/chriskiehl/Gooey/issues/854.

Thanks!

ChenglongMa commented 10 months ago

Or you can restrict the version number of wxPython to 4.1.0:

In requirements.txt

wxpython==4.1.0

In setup.py

deps = [
    ...
    'wxpython==4.1.0',
    ...
]