Skip to content

Commit

Permalink
.github/workflows/pytest: Remove old pythons (removed from gh actions)
Browse files Browse the repository at this point in the history
  • Loading branch information
rkdarst committed Feb 8, 2024
1 parent 792733a commit 09fe6c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-20.04 #ubuntu-latest
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['2.7', '3.6', '3.7', '3.9', '3.10']
python-version: ['3.7', '3.9', '3.x']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit 09fe6c9

Please sign in to comment.