mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
Drop Python 2.7 and 3.5 from CI
This commit is contained in:
parent
872fd658c4
commit
527550d5a7
5 changed files with 6 additions and 28 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -91,7 +91,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
|
||||
python: [3.6, 3.7, 3.8, 3.9]
|
||||
|
||||
steps:
|
||||
# Caches
|
||||
|
|
|
@ -26,10 +26,6 @@ jobs:
|
|||
python: pypy3.5-7.0.0
|
||||
- env: GROUP=2
|
||||
python: pypy3.5-7.0.0
|
||||
- env: GROUP=1
|
||||
python: pypy2.7-7.1.1
|
||||
- env: GROUP=2
|
||||
python: pypy2.7-7.1.1
|
||||
|
||||
before_install: tools/travis/setup.sh
|
||||
install: travis_retry tools/travis/install.sh
|
||||
|
|
|
@ -70,7 +70,7 @@ def should_update_common_wheels():
|
|||
# completely to nox for all our automation. Contributors should prefer using
|
||||
# `tox -e ...` until this note is removed.
|
||||
# -----------------------------------------------------------------------------
|
||||
@nox.session(python=["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "pypy", "pypy3"])
|
||||
@nox.session(python=["3.6", "3.7", "3.8", "3.9", "pypy3"])
|
||||
def test(session):
|
||||
# Get the common wheels.
|
||||
if should_update_common_wheels():
|
||||
|
|
Loading…
Reference in a new issue