Merge pull request #4868 from PySimpleGUI/Dev-latest

Version bump so that install from github will do something
This commit is contained in:
PySimpleGUI 2021-10-24 11:50:40 -04:00 committed by GitHub
commit 961e231859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/python3
version = __version__ = "4.51.7.7 Unreleased"
version = __version__ = "4.51.7.8 Unreleased"
_change_log = """
@ -35,6 +35,9 @@ _change_log = """
Subprocess import changed for 3.4 compatibility... yes, PySimpleGUI is STILL 3.4 compatible
4.51.7.7
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
"""
__version__ = version.split()[0] # For PEP 396 and PEP 345