diff --git a/gooey/__init__.py b/gooey/__init__.py index 7321da3..d1f4b93 100644 --- a/gooey/__init__.py +++ b/gooey/__init__.py @@ -2,4 +2,4 @@ import os 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' diff --git a/setup.py b/setup.py index 11acd82..9d9aa3e 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ from setuptools import setup, find_packages with open('README.md') as readme: long_description = readme.read() -version = '1.0.3' +version = '1.0.3.1' deps = [ 'Pillow>=4.3.0', @@ -15,7 +15,7 @@ deps = [ ] if sys.version[0] == '3': - deps.append('wxpython>=4.0.2') + deps.append('wxpython==4.0.7') setup(