Skip to content

Commit

Permalink
Loosen wxPython dependency in setup.py to >= 4.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskiehl committed Jun 12, 2021
1 parent 2e8eaee commit 8f88d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
]

if sys.version[0] == '3':
deps.append('wxpython==4.1.0')
deps.append('wxpython>=4.1.0')


setup(
Expand Down

1 comment on commit 8f88d70

@casperdcl
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

does this mean 4.1.1 works? Also should it be wxpython>=4.1.0,<4.2?

Please sign in to comment.