Merge pull request #4869 from PySimpleGUI/Dev-latest

One last time before the final release (maybe.. let's hope...)
This commit is contained in:
PySimpleGUI 2021-10-24 11:58:34 -04:00 committed by GitHub
commit c49086f704
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/python3
version = __version__ = "4.51.7.8 Unreleased"
version = __version__ = "4.51.7.9 Unreleased"
_change_log = """
@ -37,7 +37,8 @@ _change_log = """
Changed "main" entry point for the psgmain command so that if an upgrade is attempted it will work correctly (the psgmain.exe will have exited)
4.51.7.8
Version bump to get pip to install yet again from GitHub
4.51.7.9
MAIN instea of MEIN (oy! When am I going to get this release out???)
"""
__version__ = version.split()[0] # For PEP 396 and PEP 345
@ -21961,7 +21962,7 @@ def _upgrade_entry_point():
execute_py_file(__file__, 'upgrade')
def _main_entry_point():
print('Restarted mein successfully')
print('Restarting main in order to over-write...')
execute_py_file(__file__)
main_upgrade_from_github = _upgrade_entry_point