Skip to content

Commit

Permalink
Update Github Actions CI - remove 3.6 testing, add 3.11, 3.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
edparcell committed Aug 21, 2024
1 parent ecfd87b commit 76bb61f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ on: [push]

jobs:
ci:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] # TODO "3.11" takes super long
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] # TODO "3.11" takes super long

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: pip
Expand Down

0 comments on commit 76bb61f

Please sign in to comment.