Skip to content

Commit

Permalink
hotfix #549 - lock down WX version in setup.py due to breaking change…
Browse files Browse the repository at this point in the history
…s in latest version
  • Loading branch information
chriskiehl committed Apr 25, 2020
1 parent c8296b7 commit a6e3077
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gooey/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
from gooey.python_bindings.gooey_decorator import Gooey
from gooey.python_bindings.gooey_parser import GooeyParser
from gooey.gui.util.freeze import localResourcePath as local_resource_path
__version__ = '1.0.3'
__version__ = '1.0.3.1'
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
with open('README.md') as readme:
long_description = readme.read()

version = '1.0.3'
version = '1.0.3.1'

deps = [
'Pillow>=4.3.0',
Expand All @@ -15,7 +15,7 @@
]

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


setup(
Expand Down

0 comments on commit a6e3077

Please sign in to comment.