Skip to content

Commit

Permalink
add testing on Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Jan 4, 2022
1 parent 8eb0731 commit e0b2b9a
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ jobs:
os: ubuntu-latest
python-version: '3.10'
tox-env: gmpy2py310
- name: py3.11
os: ubuntu-latest
python-version: '3.11.0-alpha.3'
tox-env: py311
- name: pypy
os: ubuntu-latest
python-version: pypy-2.7
Expand Down
20 changes: 13 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[tox]
envlist = py26, py27, py33, py34, py35, py36, py37, py38, py39, py310, py, pypy, pypy3, gmpy2py27, gmpy2py39, gmpy2py310, gmpypy27, gmpypy39, gmpypy310, codechecks
envlist = py26, py27, py33, py34, py35, py36, py37, py38, py39, py310, py311, py, pypy, pypy3, gmpy2py27, gmpy2py39, gmpy2py310, gmpypy27, gmpypy39, gmpypy310, codechecks

[testenv]
deps =
Expand All @@ -11,12 +11,12 @@ deps =
py{26}: unittest2
py{26}: hypothesis<3
py{34}: attrs<21
py{26,27,34,35,36,37,38,39,310,py,py3}: pytest
py{27,34,35,36,37,38,39,310,py,py3}: hypothesis
gmpy2py{27,39,310}: gmpy2
gmpypy{27,39,310}: gmpy
gmpy{2py27,2py39,2py310,py27,py39,py310}: pytest
gmpy{2py27,2py39,2py310,py27,py39,py310}: hypothesis
py{26,27,34,35,36,37,38,39,310,311,py,py3}: pytest
py{27,34,35,36,37,38,39,310,311,py,py3}: hypothesis
gmpy2py{27,39,310,311}: gmpy2
gmpypy{27,39,310,311}: gmpy
gmpy{2py27,2py39,2py310,2py311,py27,py39,py310,py311}: pytest
gmpy{2py27,2py39,2py310,2py311,py27,py39,py310,py311}: hypothesis
# six==1.9.0 comes from setup.py install_requires
py27_old_six: six==1.9.0
py27_old_six: pytest
Expand Down Expand Up @@ -53,6 +53,9 @@ basepython=python3.9
[testenv:gmpypy310]
basepython=python3.10

[testenv:gmpypy311]
basepython=python3.11

[testenv:gmpy2py27]
basepython=python2.7

Expand All @@ -62,6 +65,9 @@ basepython=python3.9
[testenv:gmpy2py310]
basepython=python3.10

[testenv:gmpy2py311]
basepython=python3.11

[testenv:instrumental]
basepython = python2.7
deps =
Expand Down

0 comments on commit e0b2b9a

Please sign in to comment.