Skip to content

Commit 15589a1

Browse files
committed
Add python3.11 support
1 parent 4ff0a7e commit 15589a1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

template/pyproject.toml.jinja

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ classifiers = [
1313
"Programming Language :: Python :: 3.8",
1414
"Programming Language :: Python :: 3.9",
1515
"Programming Language :: Python :: 3.10",
16+
"Programming Language :: Python :: 3.11",
1617
]
1718

1819
[tool.poetry.dependencies]

template/{% if github_actions %}.github{% endif %}/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
runs-on: ubuntu-latest
3636
strategy:
3737
matrix:
38-
python-version: [ '3.8', '3.9', '3.10' ]
38+
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
3939

4040
steps:
4141
- uses: actions/checkout@v3
@@ -98,7 +98,7 @@ jobs:
9898
strategy:
9999
fail-fast: false
100100
matrix:
101-
python-version: [ '3.8', '3.9', '3.10' ]
101+
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
102102

103103
steps:
104104
- uses: actions/checkout@v3
@@ -119,7 +119,7 @@ jobs:
119119
strategy:
120120
fail-fast: false
121121
matrix:
122-
python-version: [ '3.8', '3.9', '3.10' ]
122+
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
123123

124124
steps:
125125
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)