diff options
| author | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-31 09:17:07 -0500 |
|---|---|---|
| committer | Ned Batchelder <ned@nedbatchelder.com> | 2021-12-31 12:12:02 -0500 |
| commit | 39f8f3ed43cf82cdf30b57d7f9624addcbd9e372 (patch) | |
| tree | 8a217a88ce2c1a52c53d6901aa88a44f9fe287d7 /.github/workflows | |
| parent | c2773105682ee01b5ebfe5d29e86a9634d02b053 (diff) | |
| download | python-coveragepy-git-39f8f3ed43cf82cdf30b57d7f9624addcbd9e372.tar.gz | |
build: drop Python 3.6 support
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/coverage.yml | 9 | ||||
| -rw-r--r-- | .github/workflows/kit.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/quality.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/testsuite.yml | 3 |
4 files changed, 9 insertions, 17 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 9385ff5f..8ab85e1f 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -32,21 +32,20 @@ jobs: - windows-latest python-version: # When changing this list, be sure to check the [gh-actions] list in - # tox.ini so that tox will run properly. - - "3.6" + # tox.ini so that tox will run properly. PYVERSIONS - "3.7" - "3.8" - "3.9" - "3.10" - "3.11.0-alpha.2" - - "pypy3" + - "pypy-3.7" exclude: # Windows PyPy doesn't seem to work? - os: windows-latest - python-version: "pypy3" + python-version: "pypy-3.7" # Mac PyPy always takes the longest, and doesn't add anything. - os: macos-latest - python-version: "pypy3" + python-version: "pypy-3.7" # If one job fails, stop the whole thing. fail-fast: true diff --git a/.github/workflows/kit.yml b/.github/workflows/kit.yml index 9bc8e192..af3a6bea 100644 --- a/.github/workflows/kit.yml +++ b/.github/workflows/kit.yml @@ -56,7 +56,7 @@ jobs: # "macos": ["arm64", "x86_64"], # "windows": ["x86", "AMD64"], # } - # pys = ["cp36", "cp37", "cp38", "cp39", "cp310"] + # pys = ["cp37", "cp38", "cp39", "cp310"] # PYVERSIONS # os_arch_pys = { # ("macos", "arm64"): ["cp38", "cp39", "cp310"], # } @@ -74,17 +74,14 @@ jobs: # } # print(f"- {json.dumps(them)}") # ]]] - - {"os": "ubuntu", "py": "cp36", "arch": "x86_64"} - {"os": "ubuntu", "py": "cp37", "arch": "x86_64"} - {"os": "ubuntu", "py": "cp38", "arch": "x86_64"} - {"os": "ubuntu", "py": "cp39", "arch": "x86_64"} - {"os": "ubuntu", "py": "cp310", "arch": "x86_64"} - - {"os": "ubuntu", "py": "cp36", "arch": "i686"} - {"os": "ubuntu", "py": "cp37", "arch": "i686"} - {"os": "ubuntu", "py": "cp38", "arch": "i686"} - {"os": "ubuntu", "py": "cp39", "arch": "i686"} - {"os": "ubuntu", "py": "cp310", "arch": "i686"} - - {"os": "ubuntu", "py": "cp36", "arch": "aarch64"} - {"os": "ubuntu", "py": "cp37", "arch": "aarch64"} - {"os": "ubuntu", "py": "cp38", "arch": "aarch64"} - {"os": "ubuntu", "py": "cp39", "arch": "aarch64"} @@ -92,22 +89,19 @@ jobs: - {"os": "macos", "py": "cp38", "arch": "arm64"} - {"os": "macos", "py": "cp39", "arch": "arm64"} - {"os": "macos", "py": "cp310", "arch": "arm64"} - - {"os": "macos", "py": "cp36", "arch": "x86_64"} - {"os": "macos", "py": "cp37", "arch": "x86_64"} - {"os": "macos", "py": "cp38", "arch": "x86_64"} - {"os": "macos", "py": "cp39", "arch": "x86_64"} - {"os": "macos", "py": "cp310", "arch": "x86_64"} - - {"os": "windows", "py": "cp36", "arch": "x86"} - {"os": "windows", "py": "cp37", "arch": "x86"} - {"os": "windows", "py": "cp38", "arch": "x86"} - {"os": "windows", "py": "cp39", "arch": "x86"} - {"os": "windows", "py": "cp310", "arch": "x86"} - - {"os": "windows", "py": "cp36", "arch": "AMD64"} - {"os": "windows", "py": "cp37", "arch": "AMD64"} - {"os": "windows", "py": "cp38", "arch": "AMD64"} - {"os": "windows", "py": "cp39", "arch": "AMD64"} - {"os": "windows", "py": "cp310", "arch": "AMD64"} - # [[[end]]] (checksum: dd4b4a059d9e8b8ae7e389a428a999f9) + # [[[end]]] (checksum: 4b02126e18e2b3798783d3cc6f303552) fail-fast: false steps: diff --git a/.github/workflows/quality.yml b/.github/workflows/quality.yml index 2eb64b59..6da0627e 100644 --- a/.github/workflows/quality.yml +++ b/.github/workflows/quality.yml @@ -33,7 +33,7 @@ jobs: - name: "Install Python" uses: "actions/setup-python@v2" with: - python-version: "3.8" + python-version: "3.7" # Minimum of PYVERSIONS cache: pip cache-dependency-path: 'requirements/*.pip' @@ -59,7 +59,7 @@ jobs: - name: "Install Python" uses: "actions/setup-python@v2" with: - python-version: "3.8" + python-version: "3.7" # Minimum of PYVERSIONS cache: pip cache-dependency-path: 'requirements/*.pip' diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 1fd6df4c..54859b25 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -32,8 +32,7 @@ jobs: - windows-latest python-version: # When changing this list, be sure to check the [gh-actions] list in - # tox.ini so that tox will run properly. - - "3.6" + # tox.ini so that tox will run properly. PYVERSIONS - "3.7" - "3.8" - "3.9" |
