Support for python 3.11

This commit is contained in:
Éloi Rivard 2022-11-01 11:49:26 +01:00
parent 2d3c627479
commit 5aba60d587
3 changed files with 15 additions and 3 deletions

View file

@ -14,7 +14,7 @@ before_script:
- pip install tox poetry coveralls pyyaml tomli - pip install tox poetry coveralls pyyaml tomli
style: style:
image: python:3.10 image: python:3.11
stage: test stage: test
script: tox -e style script: tox -e style
@ -38,13 +38,18 @@ python310:
stage: test stage: test
script: tox -e py310 script: tox -e py310
python311:
image: python:3.11
stage: test
script: tox -e py311
doc: doc:
image: python:3.10 image: python:3.11
stage: test stage: test
script: tox -e doc script: tox -e doc
coverage: coverage:
image: python:3.10 image: python:3.11
stage: test stage: test
allow_failure: true allow_failure: true
script: script:

View file

@ -14,6 +14,11 @@ Fixed
- Fixed a bug happening during RP initiated logout on clients without - Fixed a bug happening during RP initiated logout on clients without
`post_logout_redirect_uri` defined. `post_logout_redirect_uri` defined.
Added
*****
- Python 3.11 support. :pr:`61`
[0.0.12] - 2022-10-24 [0.0.12] - 2022-10-24
===================== =====================

View file

@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License", "License :: OSI Approved :: MIT License",
"Environment :: Web Environment", "Environment :: Web Environment",
@ -106,6 +107,7 @@ envlist =
py38 py38
py39 py39
py310 py310
py311
doc doc
coverage coverage