summaryrefslogtreecommitdiff
path: root/.azure-pipelines
diff options
context:
space:
mode:
authorPradyun Gedam <pradyunsg@users.noreply.github.com>2020-11-30 20:55:54 +0000
committerPradyun Gedam <pradyunsg@users.noreply.github.com>2020-12-19 19:55:04 +0000
commit527550d5a7f1e967498f6eeca83a13b52cbcd136 (patch)
tree11a93287e969b6983bd387464f636af89e0d3575 /.azure-pipelines
parent872fd658c4d8f4676d491d7986ba1a78a201f701 (diff)
downloadpip-527550d5a7f1e967498f6eeca83a13b52cbcd136.tar.gz
Drop Python 2.7 and 3.5 from CI
Diffstat (limited to '.azure-pipelines')
-rw-r--r--.azure-pipelines/jobs/test-windows.yml16
-rw-r--r--.azure-pipelines/jobs/test.yml10
2 files changed, 4 insertions, 22 deletions
diff --git a/.azure-pipelines/jobs/test-windows.yml b/.azure-pipelines/jobs/test-windows.yml
index 6053b0eb0..99cd8a836 100644
--- a/.azure-pipelines/jobs/test-windows.yml
+++ b/.azure-pipelines/jobs/test-windows.yml
@@ -9,14 +9,8 @@ jobs:
vmImage: ${{ parameters.vmImage }}
strategy:
matrix:
- "2.7-x86":
- python.version: '2.7'
- python.architecture: x86
- "2.7": # because Python 2!
- python.version: '2.7'
- python.architecture: x64
- "3.5": # lowest Py3 version
- python.version: '3.5'
+ "3.6": # lowest Python version
+ python.version: '3.6'
python.architecture: x64
"3.8": # current
python.version: '3.8'
@@ -38,16 +32,10 @@ jobs:
vmImage: ${{ parameters.vmImage }}
strategy:
matrix:
- "3.6":
- python.version: '3.6'
- python.architecture: x64
"3.7":
python.version: '3.7'
python.architecture: x64
# This is for Windows, so test x86 builds
- "3.5-x86":
- python.version: '3.5'
- python.architecture: x86
"3.6-x86":
python.version: '3.6'
python.architecture: x86
diff --git a/.azure-pipelines/jobs/test.yml b/.azure-pipelines/jobs/test.yml
index 274e075a6..a3a0ef80b 100644
--- a/.azure-pipelines/jobs/test.yml
+++ b/.azure-pipelines/jobs/test.yml
@@ -9,8 +9,8 @@ jobs:
vmImage: ${{ parameters.vmImage }}
strategy:
matrix:
- "2.7":
- python.version: '2.7'
+ "3.6": # lowest Python version
+ python.version: '3.6'
python.architecture: x64
"3.8":
python.version: '3.8'
@@ -29,12 +29,6 @@ jobs:
vmImage: ${{ parameters.vmImage }}
strategy:
matrix:
- "3.5":
- python.version: '3.5'
- python.architecture: x64
- "3.6":
- python.version: '3.6'
- python.architecture: x64
"3.7":
python.version: '3.7'
python.architecture: x64