More upgrade utility work
This commit is contained in:
parent
bf1ae9942c
commit
efbe687c27
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
|
|
||||||
version = __version__ = "4.16.4 Unreleased\n update_animation_no_buffering, popup_notify, removed TRANSPARENT_BUTTON, TabGroup now autonumbers keys, Table col width better size based on font, Table measure row height"
|
version = __version__ = "4.16.6 Unreleased\n update_animation_no_buffering, popup_notify, removed TRANSPARENT_BUTTON, TabGroup now autonumbers keys, Table col width better size based on font, Table measure row height, Upgrade from GitHub utility"
|
||||||
|
|
||||||
port = 'PySimpleGUI'
|
port = 'PySimpleGUI'
|
||||||
|
|
||||||
|
@ -13754,21 +13754,20 @@ def _refresh_debugger():
|
||||||
# 888 888 888 888 888 888 888 888
|
# 888 888 888 888 888 888 888 888
|
||||||
# 888 888 888 "Y888888 888 888 888
|
# 888 888 888 "Y888888 888 888 888
|
||||||
|
|
||||||
import shutil
|
|
||||||
import glob
|
|
||||||
import sys
|
import sys
|
||||||
import site
|
import site
|
||||||
import fnmatch
|
|
||||||
import os
|
import os
|
||||||
import requests
|
import requests
|
||||||
|
|
||||||
files = "PySimpleGUI.py ".split()
|
|
||||||
url = "https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/"
|
|
||||||
|
|
||||||
Pythonista = sys.platform == "ios"
|
|
||||||
|
|
||||||
|
|
||||||
def _upgrade_from_github():
|
def _upgrade_from_github():
|
||||||
|
files = "PySimpleGUI.py ".split()
|
||||||
|
url = "https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/"
|
||||||
|
|
||||||
|
Pythonista = sys.platform == "ios"
|
||||||
|
|
||||||
package = files[0].split('.py')[0]
|
package = files[0].split('.py')[0]
|
||||||
contents = {}
|
contents = {}
|
||||||
for file in files:
|
for file in files:
|
||||||
|
|
Loading…
Reference in New Issue