From 90b02c25e25cc7f5ac79ba03e1f5d623e6785bce Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Sun, 18 Oct 2020 12:37:39 -0400 Subject: [PATCH] Rolled back to original versoin statement --- PySimpleGUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index a9c80447..5f4bf7fa 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -version = "4.30.0.6 Unreleased\nAdded ability to set icon for popup_get_file when icon is set as parameter, changed __version__ to be same as 'ver' (the shortened version number), added Window.set_cursor, changed install to use version instead of __version__, changed back __version__ to be the long-form of the version number so that installs from GitHub will work again." +version = __version__ = "4.30.0.6 Unreleased\nAdded ability to set icon for popup_get_file when icon is set as parameter, changed __version__ to be same as 'ver' (the shortened version number), added Window.set_cursor, changed install to use version instead of __version__, changed back __version__ to be the long-form of the version number so that installs from GitHub will work again." # The shortened version of version try: @@ -7,7 +7,7 @@ try: except: ver = '' -__version__ = version +# __version__ = version port = 'PySimpleGUI'