From a6e30774ee39965bbe3fe81c9c787e0c70b8976b Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 25 Apr 2020 15:22:33 -0700 Subject: [PATCH] hotfix #549 - lock down WX version in setup.py due to breaking changes in latest version --- gooey/__init__.py | 2 +- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gooey/__init__.py b/gooey/__init__.py index 7321da3b..d1f4b933 100644 --- a/gooey/__init__.py +++ b/gooey/__init__.py @@ -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' diff --git a/setup.py b/setup.py index 11acd82d..9d9aa3ea 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -15,7 +15,7 @@ ] if sys.version[0] == '3': - deps.append('wxpython>=4.0.2') + deps.append('wxpython==4.0.7') setup(