Skip to content

Commit

Permalink
Fix build on Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gvalkov committed Aug 7, 2023
1 parent bd236ea commit 61c2d7d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,15 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
include:
- os: ubuntu-20.04
python-version: "3.6"

steps:
- uses: actions/checkout@v3
Expand All @@ -22,7 +26,6 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install pytest
python -m pip install -e .
- name: Pytest
run: |
pytest
PYTHONPATH="." pytest

0 comments on commit 61c2d7d

Please sign in to comment.