Skip to content

Commit

Permalink
Bump wxPython version to support newer python versions
Browse files Browse the repository at this point in the history
I noticed that wxPython couldn't be installed as a dependency with
Python 3.12 on MacOS. It failed with the following error message:

ModuleNotFoundError: No module named 'attrdict'

After consulting wxWidgets/Phoenix#2296, I
found out that this was an issue with wxPython and confirmed that 4.2.1
works. I tested this locally.
  • Loading branch information
lekv committed Aug 11, 2024
1 parent a8242df commit 10e85cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
wxPython>=4.0,<4.2.0 ; platform_system=="Linux" # See https://github.com/wxWidgets/Phoenix/issues/2225
wxPython==4.2.0 ; platform_system!="Linux"
wxPython==4.2.1 ; platform_system!="Linux"
pyserial
requests
pywin32; platform_system=="Windows"
Expand Down

0 comments on commit 10e85cc

Please sign in to comment.