Skip to content

Commit

Permalink
Remove PyPy2 and Python 3.4 from the matrix.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 5, 2020
1 parent 14a8262 commit 05b7e94
Showing 1 changed file with 1 addition and 27 deletions.
28 changes: 1 addition & 27 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
matrix:
python-version:
- 3.9
- pypy2
- 3.8
- 3.7
- pypy3
Expand All @@ -43,51 +42,26 @@ jobs:
# NOTE: Windows PyPy jobs are excluded to address the tox bug
# NOTE: https://github.com/tox-dev/tox/issues/1704.
# NOTE: They should be re-added once it's fixed.
- os: windows-latest
python-version: pypy2
- os: windows-2016
python-version: pypy2
- os: windows-latest
python-version: pypy3
- os: windows-2016
python-version: pypy3
# NOTE: macOS PyPy jobs are excluded because installing cryptography
# NOTE: needs openssl headers that aren't present at the moment.
# TODO: Remove the exclusions once this is addressed.
- os: macOS-11.0
python-version: pypy2
- os: macOS-latest
python-version: pypy2
- os: macOS-11.0
python-version: pypy3
- os: macOS-latest
python-version: pypy3
include:
# NOTE: The only GNU/Linux CPython 3.4 available is built for Ubuntu 18
# https://github.com/actions/python-versions/blob/c483657/versions-manifest.json#L1228
- os: ubuntu-18.04
python-version: 3.4

continue-on-error: >-
${{
(
contains(matrix.python-version, 'alpha') ||
(
matrix.python-version == '2.7' &&
startsWith(matrix.os, 'windows-')
)
contains(matrix.python-version, 'alpha')
) && true || false
}}
env:
PYTEST_ADDOPTS: >-
${{
(
matrix.python-version == 'pypy2' &&
startsWith(matrix.os, 'ubuntu-')
) &&
'-p no:warnings' || ''
}}
PY_COLORS: 1
TOXENV: >-
${{
Expand Down

0 comments on commit 05b7e94

Please sign in to comment.