Merge pull request #4942 from PySimpleGUI/Dev-latest

Release 4.55.1
This commit is contained in:
PySimpleGUI 2021-11-07 13:43:19 -05:00 committed by GitHub
commit 27c8fc88ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 7 deletions

View File

@ -1,14 +1,11 @@
#!/usr/bin/python3
version = __version__ = "4.55.0.2 Unreleased"
version = __version__ = "4.55.1 Released 7-Nov-2021"
_change_log = """
Changelog since 4.55.0 released to PyPI on 7-Nov-2021
4.55.0.1
Version bump so that something will be installed from GitHub that's different than PyPI
4.55.0.2
Fix in execute_py related calls. Went overboard with using sys.executable. Should only use it when nothing specified in global settings.
Changelog since 4.55.1 released to PyPI on 7-Nov-2021
4.55.1.1
"""
__version__ = version.split()[0] # For PEP 396 and PEP 345