removed from CI, added comments to tox and pre-commit
This commit is contained in:
parent
1a6a158036
commit
05ceee7fc9
|
@ -46,7 +46,6 @@ jobs:
|
||||||
"ubuntu-py39",
|
"ubuntu-py39",
|
||||||
"ubuntu-py310",
|
"ubuntu-py310",
|
||||||
"ubuntu-py311",
|
"ubuntu-py311",
|
||||||
"ubuntu-py311-exceptiongroup",
|
|
||||||
"ubuntu-pypy3",
|
"ubuntu-pypy3",
|
||||||
|
|
||||||
"macos-py37",
|
"macos-py37",
|
||||||
|
@ -116,10 +115,6 @@ jobs:
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
tox_env: "py311"
|
tox_env: "py311"
|
||||||
use_coverage: true
|
use_coverage: true
|
||||||
- name: "ubuntu-py311-exceptiongroup"
|
|
||||||
python: "3.11-dev"
|
|
||||||
os: ubuntu-latest
|
|
||||||
tox_env: "py311-exceptiongroup"
|
|
||||||
- name: "ubuntu-pypy3"
|
- name: "ubuntu-pypy3"
|
||||||
python: "pypy-3.7"
|
python: "pypy-3.7"
|
||||||
os: ubuntu-latest
|
os: ubuntu-latest
|
||||||
|
|
|
@ -68,7 +68,8 @@ repos:
|
||||||
- packaging
|
- packaging
|
||||||
- tomli
|
- tomli
|
||||||
- types-pkg_resources
|
- types-pkg_resources
|
||||||
# for python>=3.11
|
# for mypy running on python>=3.11 since exceptiongroup is only a dependency
|
||||||
|
# on <3.11
|
||||||
- exceptiongroup>=1.0.0rc8
|
- exceptiongroup>=1.0.0rc8
|
||||||
- repo: local
|
- repo: local
|
||||||
hooks:
|
hooks:
|
||||||
|
|
5
tox.ini
5
tox.ini
|
@ -11,13 +11,16 @@ envlist =
|
||||||
py311
|
py311
|
||||||
pypy3
|
pypy3
|
||||||
py37-{pexpect,xdist,unittestextras,numpy,pluggymain}
|
py37-{pexpect,xdist,unittestextras,numpy,pluggymain}
|
||||||
py311-exceptiongroup
|
|
||||||
doctesting
|
doctesting
|
||||||
plugins
|
plugins
|
||||||
py37-freeze
|
py37-freeze
|
||||||
docs
|
docs
|
||||||
docs-checklinks
|
docs-checklinks
|
||||||
|
|
||||||
|
# checks that 3.11 native ExceptionGroup works with exceptiongroup
|
||||||
|
# not included in CI.
|
||||||
|
py311-exceptiongroup
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
|
|
Loading…
Reference in New Issue