Merge pull request #4870 from PySimpleGUI/Dev-latest

Better restarting message for psgmain... I think this is actually it!…
This commit is contained in:
PySimpleGUI 2021-10-24 12:05:59 -04:00 committed by GitHub
commit c03725b286
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/python3 #!/usr/bin/python3
version = __version__ = "4.51.7.9 Unreleased" version = __version__ = "4.51.7.10 Unreleased"
_change_log = """ _change_log = """
@ -39,6 +39,8 @@ _change_log = """
Version bump to get pip to install yet again from GitHub Version bump to get pip to install yet again from GitHub
4.51.7.9 4.51.7.9
MAIN instea of MEIN (oy! When am I going to get this release out???) MAIN instea of MEIN (oy! When am I going to get this release out???)
4.51.7.10
Better description of the main restart as to not be alarming...
""" """
__version__ = version.split()[0] # For PEP 396 and PEP 345 __version__ = version.split()[0] # For PEP 396 and PEP 345
@ -21962,7 +21964,7 @@ def _upgrade_entry_point():
execute_py_file(__file__, 'upgrade') execute_py_file(__file__, 'upgrade')
def _main_entry_point(): def _main_entry_point():
print('Restarting main in order to over-write...') print('Restarting main as a new process...(needed in case you want to GitHub Upgrade)')
execute_py_file(__file__) execute_py_file(__file__)
main_upgrade_from_github = _upgrade_entry_point main_upgrade_from_github = _upgrade_entry_point