Skip to content

Commit 554b057

Browse files
committed
feat: add support for py311
Signed-off-by: Jan Kowalleck <jan.kowalleck@gmail.com>
1 parent 0853d14 commit 554b057

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:
@@ -53,7 +53,7 @@ jobs:
5353
include:
5454
- # test with the locked dependencies
5555
os: ubuntu-latest
56-
python-version: '3.10'
56+
python-version: '3.11'
5757
toxenv-factor: 'locked'
5858
- # test with the lowest dependencies
5959
os: ubuntu-20.04
@@ -90,7 +90,8 @@ jobs:
9090
matrix:
9191
os: ['ubuntu-latest', 'windows-latest', 'macos-latest']
9292
python-version:
93-
- "3.10" # highest supported
93+
- "3.11" # highest supported
94+
- "3.10"
9495
- "3.9"
9596
- "3.8"
9697
- "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)