Skip to content

Commit e1d767f

Browse files
committed
feat: add support for py311
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent 63bfb87 commit e1d767f

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/poetry.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515

1616
env:
1717
REPORTS_DIR: CI_reports
18-
PYTHON_VERISON_DEFAULT: "3.10"
18+
PYTHON_VERISON_DEFAULT: "3.11"
1919
POETRY_VERSION: "1.1.11"
2020

2121
jobs:
@@ -52,7 +52,7 @@ jobs:
5252
matrix:
5353
include:
5454
- # test with the locked dependencies
55-
python-version: '3.10'
55+
python-version: '3.11'
5656
toxenv-factor: 'locked'
5757
- # test with the lowest dependencies
5858
python-version: '3.6'
@@ -88,7 +88,8 @@ jobs:
8888
matrix:
8989
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
9090
python-version:
91-
- "3.10" # highest supported
91+
- "3.11" # highest supported
92+
- "3.10"
9293
- "3.9"
9394
- "3.8"
9495
- "3.7"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ classifiers = [
3131
'Programming Language :: Python :: 3.8',
3232
'Programming Language :: Python :: 3.9',
3333
'Programming Language :: Python :: 3.10',
34+
'Programming Language :: Python :: 3.11',
3435
'Typing :: Typed'
3536
]
3637
keywords = [

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ minversion = 3.10
88
envlist =
99
flake8
1010
mypy-{locked,lowest}
11-
py{310,39,38,37,36}-{locked,lowest}
11+
py{311,310,39,38,37,36}-{locked,lowest}
1212
isolated_build = True
1313
skip_missing_interpreters = True
1414
usedevelop = False

0 commit comments

Comments
 (0)