Skip to content

Commit

Permalink
CI: only test recent versions of Python
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed May 1, 2024
1 parent e8d8d84 commit 7134b08
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ name: Continuous integration
on:
push:
pull_request:
schedule:
# Every month
- cron: '0 0 1 * *'

jobs:
build:
Expand All @@ -17,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
exclude:
# pycifrw 4.4.4 is broken on Windows / python 3.10
- os: windows-latest
Expand All @@ -27,7 +24,7 @@ jobs:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }} on ${{ matrix.os }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand Down

0 comments on commit 7134b08

Please sign in to comment.