Skip to content

Commit

Permalink
Drop Python 3.5 and 3.6 (both EOL)
Browse files Browse the repository at this point in the history
Also switch from tox to pytest
  • Loading branch information
defnull committed Mar 5, 2023
1 parent 29120cd commit c19c6f1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/test.yaml
Expand Up @@ -4,16 +4,15 @@ on: [push, pull_request]

jobs:
testing:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
python-version:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
- "3.11"

steps:
- uses: actions/checkout@v2
Expand All @@ -24,7 +23,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: python -m pip install --upgrade pip tox
run: python -m pip install --upgrade pip pytest

- name: Test
run: tox -e py
run: pytest
10 changes: 0 additions & 10 deletions tox.ini

This file was deleted.

0 comments on commit c19c6f1

Please sign in to comment.