Skip to content

Commit

Permalink
fix(ci): drop python 3.7 unsupported EOL from matrix testing
Browse files Browse the repository at this point in the history
  • Loading branch information
joanise committed Aug 22, 2024
1 parent f0c744b commit 4cb8775
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/matrix-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,19 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test,api]
pip install -e .[test]
- name: Run tests
run: python run_tests.py dev

0 comments on commit 4cb8775

Please sign in to comment.