Skip to content

Commit

Permalink
Update Python versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
avylove committed Apr 10, 2024
1 parent f93c825 commit a8c2d57
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ jobs:
fail-fast: false

matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
include:

- python-version: '3.11'
- python-version: '3.12'
toxenv: lint

- python-version: '3.11'
- python-version: '3.12'
toxenv: docs

- python-version: '3.12-dev'
optional: true
toxenv: py312
toxpython: '3.12'

- python-version: '3.11'
- python-version: '3.12'
toxenv: coverage

- python-version: '3.13-dev'
optional: true
toxenv: py313
toxpython: '3.13'

- python-version: '3.6'
toxenv: py36
os: ubuntu-20.04
Expand All @@ -56,8 +56,8 @@ jobs:
- python-version: pypy-2.7
toxenv: pypy27

- python-version: pypy-3.9
toxenv: pypy39
- python-version: pypy-3.10
toxenv: pypy10

env:
TOXENV: ${{ matrix.toxenv || format('py{0}', matrix.python-version) }}
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ envlist =
docs
el7
py27
py3{12,10,9,8,7,6,5}
pypy{27,39}
py3{11,10,9,8,7,6,5}
pypy{27,310}

[base]
deps =
Expand All @@ -28,7 +28,7 @@ deps =
nbformat

[testenv]
basepython = python3.11
basepython = python3.12
usedevelop = True
download=True
ignore_errors = True
Expand Down

0 comments on commit a8c2d57

Please sign in to comment.