From a63a0c327ab7571057c484c4624372de231e7a30 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Sun, 18 Oct 2020 17:08:00 -0400 Subject: [PATCH] Another __version__ change --- PySimpleGUI.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 5f4bf7fa..ea764a20 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -1,5 +1,7 @@ #!/usr/bin/python3 -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." +version = __version__ = "4.30.0.7 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, trying another version change" + +__version__ = version.split()[0] # For PEP 396 and PEP 345 # The shortened version of version try: