summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2019-07-15 09:49:59 +0200
committerFlorian Bruhin <me@the-compiler.org>2019-07-15 09:53:43 +0200
commit4ac50139f7084cd5044af9cf25a841b113aeda44 (patch)
treece87a86e84af5e2bcd58ac5af19d5bb5c7262fe4
parent1fee12a303a79aa2ec8f430083f41da67227a4fe (diff)
downloadqutebrowser-4ac50139f7084cd5044af9cf25a841b113aeda44.tar.gz
qutebrowser-4ac50139f7084cd5044af9cf25a841b113aeda44.zip
appveyor: Upgrade to Python 3.7.4
Due to OpenSSL version incompatibilities, we need to upgrade to Python 3.7.4: https://www.riverbankcomputing.com/pipermail/pyqt/2019-June/041891.html However, that's not available on AppVeyor yet: https://github.com/appveyor/ci/issues/3026 So let's just upgrade ourselves until the AppVeyor image is updated. See #4906
-rw-r--r--.appveyor.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 42f36c467..6e4c925a8 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -11,6 +11,9 @@ environment:
# - TESTENV: pylint
install:
+ - 'curl -o python-webinstall.exe https://www.python.org/ftp/python/3.7.4/python-3.7.4-amd64-webinstall.exe'
+ - 'python-webinstall.exe /passive Include_test=0 Include_doc=0 Include_dev=0 Include_tcltk=0'
+ - '%PYTHON% --version'
- '%PYTHON% -m pip install -U pip'
- '%PYTHON% -m pip install -r misc\requirements\requirements-tox.txt'
- 'set PATH=C:\Python37-x64;%PATH'