Skip to content

Commit

Permalink
GH Actions: Removes checks against obsolete Python interpreters
Browse files Browse the repository at this point in the history
  • Loading branch information
funkyfuture committed Jul 22, 2023
1 parent ed0555d commit 9e06260
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions .github/workflows/qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,14 @@ on:

jobs:
tests:
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
python-version:
- 2.7
- pypy2
- 3.5
- 3.6
- 3.7
- 3.8
- 3.9
- 3.7 # 2023-06-07
- 3.8 # 2024-10
- 3.9 # 2025-10
- pypy3
include:
- os: ubuntu-18.04
python-version: 3.4
steps:
- uses: actions/checkout@v2
with:
Expand All @@ -41,9 +33,6 @@ jobs:
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
restore-keys: |
${{ runner.os }}-pip
- run: python -m pip install --upgrade pip setuptools tox
- run: tox -e py

Expand Down Expand Up @@ -79,9 +68,6 @@ jobs:
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip
restore-keys: |
${{ runner.os }}-pip
- run: python -m pip install --upgrade pip setuptools tox
- run: tox -e ${{ matrix.environment }}

Expand Down

0 comments on commit 9e06260

Please sign in to comment.