Skip to content

Commit a6e3077

Browse files
committed
hotfix #549 - lock down WX version in setup.py due to breaking changes in latest version
1 parent c8296b7 commit a6e3077

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

gooey/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from gooey.python_bindings.gooey_decorator import Gooey
33
from gooey.python_bindings.gooey_parser import GooeyParser
44
from gooey.gui.util.freeze import localResourcePath as local_resource_path
5-
__version__ = '1.0.3'
5+
__version__ = '1.0.3.1'

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
with open('README.md') as readme:
77
long_description = readme.read()
88

9-
version = '1.0.3'
9+
version = '1.0.3.1'
1010

1111
deps = [
1212
'Pillow>=4.3.0',
@@ -15,7 +15,7 @@
1515
]
1616

1717
if sys.version[0] == '3':
18-
deps.append('wxpython>=4.0.2')
18+
deps.append('wxpython==4.0.7')
1919

2020

2121
setup(

0 commit comments

Comments
 (0)