Merge pull request #4931 from PySimpleGUI/Dev-latest

Removed the print in _main_entry_point.... having problems with psgma…
This commit is contained in:
PySimpleGUI 2021-11-05 15:00:36 -04:00 committed by GitHub
commit 2a910c9c34
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,5 +1,5 @@
#!/usr/bin/python3 #!/usr/bin/python3
version = __version__ = "4.53.0.18 Unreleased" version = __version__ = "4.53.0.19 Unreleased"
_change_log = """ _change_log = """
Changelog since 4.53.0 released to PyPI on 24-Oct-2021 Changelog since 4.53.0 released to PyPI on 24-Oct-2021
@ -62,6 +62,8 @@ _change_log = """
It was using the settings file to get the Python version and should instead use whatever was used to invoke PySimpleGUI It was using the settings file to get the Python version and should instead use whatever was used to invoke PySimpleGUI
4.53.0.18 4.53.0.18
Changed the _copy_files_from_github code to always use the currently running python interpreter to do the pip install! Changed the _copy_files_from_github code to always use the currently running python interpreter to do the pip install!
4.53.0.19
Removed the print in the relauch of psgmain.... struggling a bit with the whole psgmain upgrading itself....
""" """
__version__ = version.split()[0] # For PEP 396 and PEP 345 __version__ = version.split()[0] # For PEP 396 and PEP 345
@ -22329,7 +22331,7 @@ def _upgrade_entry_point():
def _main_entry_point(): def _main_entry_point():
print('Restarting main as a new process...(needed in case you want to GitHub Upgrade)') # print('Restarting main as a new process...(needed in case you want to GitHub Upgrade)')
# Relaunch using the same python interpreter that was used to run this function # Relaunch using the same python interpreter that was used to run this function
execute_py_file(__file__, interpreter_command=sys.executable) execute_py_file(__file__, interpreter_command=sys.executable)