Skip to content

Commit 3bf0a00

Browse files
authored
Merge pull request #110 from oslokommune/python3.11
Add support for Python 3.11
2 parents 286f75c + eea7b11 commit 3bf0a00

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.github/workflows/continous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python: ['3.7', '3.8', '3.9', '3.10']
12+
python: ['3.7', '3.8', '3.9', '3.10', '3.11']
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Set up Python ${{ matrix.python }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## ?.?.?
2+
3+
* Added support for Python 3.11.
4+
15
## 2.3.0
26

37
* New method `TeamClient.get_user_by_username` for looking up Keycloak users.

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
"Programming Language :: Python :: 3.8",
4343
"Programming Language :: Python :: 3.9",
4444
"Programming Language :: Python :: 3.10",
45+
"Programming Language :: Python :: 3.11",
4546
"License :: OSI Approved :: MIT License",
4647
"Operating System :: OS Independent",
4748
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py37,py38,py39,py310,flake8,black,mypy
2+
envlist = py37,py38,py39,py310,py311,flake8,black,mypy
33

44
[testenv]
55
deps=

0 commit comments

Comments
 (0)