summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2019-10-24 03:08:35 -0700
committerGiampaolo Rodola <g.rodola@gmail.com>2019-10-24 03:08:35 -0700
commit386a9288fc854626c96eb32d1a5bdd3f7f260b12 (patch)
treeaed93ba12dbd04363bec34156d149b52b86802eb
parent867572cc54af7142b577ff02e22f05541e4008ad (diff)
downloadpsutil-386a9288fc854626c96eb32d1a5bdd3f7f260b12.tar.gz
revert last appveyor change for 3.8
-rw-r--r--appveyor.yml16
-rwxr-xr-xscripts/internal/download_exes.py2
2 files changed, 9 insertions, 9 deletions
diff --git a/appveyor.yml b/appveyor.yml
index f58fa51c..38a6a8e0 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -15,6 +15,10 @@ environment:
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "32"
+ - PYTHON: "C:\\Python35"
+ PYTHON_VERSION: "3.5.x"
+ PYTHON_ARCH: "32"
+
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "32"
@@ -23,16 +27,16 @@ environment:
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "32"
- - PYTHON: "C:\\Python38"
- PYTHON_VERSION: "3.8.x"
- PYTHON_ARCH: "32"
-
# 64 bits
- PYTHON: "C:\\Python27-x64"
PYTHON_VERSION: "2.7.x"
PYTHON_ARCH: "64"
+ - PYTHON: "C:\\Python35-x64"
+ PYTHON_VERSION: "3.5.x"
+ PYTHON_ARCH: "64"
+
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
@@ -41,10 +45,6 @@ environment:
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
- - PYTHON: "C:\\Python38-x64"
- PYTHON_VERSION: "3.8.x"
- PYTHON_ARCH: "64"
-
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
diff --git a/scripts/internal/download_exes.py b/scripts/internal/download_exes.py
index 3f0be8ea..1b72a177 100755
--- a/scripts/internal/download_exes.py
+++ b/scripts/internal/download_exes.py
@@ -26,7 +26,7 @@ from scriptutils import printerr, exit
BASE_URL = 'https://ci.appveyor.com/api'
-PY_VERSIONS = ['2.7', '3.6', '3.7', '3.8']
+PY_VERSIONS = ['2.7', '3.5', '3.6', '3.7']
TIMEOUT = 30
COLORS = True