diff options
Diffstat (limited to '.github/workflows/testsuite.yml')
-rw-r--r-- | .github/workflows/testsuite.yml | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/.github/workflows/testsuite.yml b/.github/workflows/testsuite.yml index 115ce80b..94748db4 100644 --- a/.github/workflows/testsuite.yml +++ b/.github/workflows/testsuite.yml @@ -26,8 +26,6 @@ jobs: python-version: # When changing this list, be sure to check the [gh-actions] list in # tox.ini so that tox will run properly. - - "2.7" - - "3.5" - "3.6" - "3.7" - "3.8" @@ -38,9 +36,6 @@ jobs: # Windows PyPy doesn't seem to work? - os: windows-latest python-version: "pypy3" - # Microsoft removed vcpython27, so we can't do Windows 2.7 - - os: windows-latest - python-version: "2.7" fail-fast: false steps: @@ -52,11 +47,6 @@ jobs: with: python-version: "${{ matrix.python-version }}" - - name: "Install Visual C++ if needed" - if: runner.os == 'Windows' && matrix.python-version == '2.7' - run: | - choco install vcpython27 -f -y - - name: "Install dependencies" run: | set -xe |