ci_install: Clean up PyQt URL.
This commit is contained in:
parent
3251bd8419
commit
a845bf22ff
@ -69,10 +69,12 @@ def check_setup(executable):
|
|||||||
|
|
||||||
if 'APPVEYOR' in os.environ:
|
if 'APPVEYOR' in os.environ:
|
||||||
print("Getting PyQt5...")
|
print("Getting PyQt5...")
|
||||||
urllib.urlretrieve(
|
qt_version = '5.5.1'
|
||||||
'http://www.qutebrowser.org/pyqt/'
|
pyqt_version = '5.5.1'
|
||||||
'PyQt5-5.5.1-gpl-Py3.4-Qt5.5.1-x32.exe',
|
pyqt_url = ('http://www.qutebrowser.org/pyqt/'
|
||||||
r'C:\install-PyQt5.exe')
|
'PyQt5-{}-gpl-Py3.4-Qt{}-x32.exe'.format(
|
||||||
|
pyqt_version, qt_version))
|
||||||
|
urllib.urlretrieve(pyqt_url, r'C:\install-PyQt5.exe')
|
||||||
|
|
||||||
print("Fixing registry...")
|
print("Fixing registry...")
|
||||||
with winreg.OpenKey(winreg.HKEY_CURRENT_USER,
|
with winreg.OpenKey(winreg.HKEY_CURRENT_USER,
|
||||||
|
Loading…
Reference in New Issue
Block a user