Skip to content

Commit

Permalink
correct pip install; don't build 2.7 through 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dougthor42 committed Oct 8, 2024
1 parent a67e909 commit 9bec72b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["2.7", "3.3", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
allowed-to-fail: [false]
include:
- python-version: "3.13"
Expand All @@ -37,7 +37,8 @@ jobs:
- name: Install dependencies
continue-on-error: ${{ matrix.allowed-to-fail }}
run: |
pip install -e .[dev]
pip install -r requirements.txt
pip install -e .
- name: Run tests
continue-on-error: ${{ matrix.allowed-to-fail }}
Expand Down

0 comments on commit 9bec72b

Please sign in to comment.