From f78c60cc28c7e44117b92c73286a6cfdef94b49a Mon Sep 17 00:00:00 2001 From: Ronny Pfannschmidt Date: Wed, 10 Mar 2021 09:50:40 +0100 Subject: streamline workflows for current state of python versions drop deadsnakes until we need it again --- .github/workflows/python-tests.yml | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 68c1f85..ffb8fe6 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -17,12 +17,7 @@ jobs: matrix: python_version: [ '3.6', '3.7', '3.8', '3.9', 'pypy3' ] os: [windows-latest, ubuntu-latest] #, macos-latest] - exclude: - - os: windows-latest - python_version: "pypy2" include: - - os: ubuntu-latest - python_version: '3.9-dev' - os: windows-latest python_version: 'msys2' @@ -31,13 +26,7 @@ jobs: - uses: actions/checkout@v1 - name: Setup python uses: actions/setup-python@v2 - if: matrix.python_version != '3.9-dev' && matrix.python_version != 'msys2' - with: - python-version: ${{ matrix.python_version }} - architecture: x64 - - name: Set up Python ${{ matrix.python_version }} (deadsnakes) - uses: deadsnakes/action@v2.0.1 - if: matrix.python_version == '3.9-dev' + if: matrix.python_version != 'msys2' with: python-version: ${{ matrix.python_version }} architecture: x64 @@ -58,7 +47,7 @@ jobs: strategy: fail-fast: false matrix: - python_version: [ '3.6', '3.7', '3.8', '3.9', 'pypy3' ] + python_version: [ '3.6', '3.9', 'pypy3' ] installer: ["pip install", easy_install] name: check self install - Python ${{ matrix.python_version }} via ${{ matrix.installer }} steps: @@ -85,12 +74,12 @@ jobs: name: Python ${{ matrix.python_version }} eggs strategy: matrix: - python_version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9-dev'] + python_version: ['3.6', '3.7', '3.8', '3.9'] steps: - uses: actions/checkout@v1 - name: Setup python uses: actions/setup-python@v2 - if: matrix.python_version != '3.9-dev' + if: matrix.python_version != '3.9' with: python-version: ${{ matrix.python_version }} architecture: x64 -- cgit v1.2.1