Skip to content

Commit 8013c56

Browse files
committed
chore: update dev env to python 3.11
1 parent c079772 commit 8013c56

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10
1+
FROM python:3.11
22

33
ENV PYTHONDONTWRITEBYTECODE=1 \
44
PYTHONUNBUFFERED=1 \

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.7", "3.8", "3.9", "3.10"]
13+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1414

1515
steps:
1616
- uses: actions/checkout@v3

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ build-backend = "setuptools.build_meta"
3535

3636
[tool.black]
3737
line-length = 127
38-
target-version = ['py310']
38+
target-version = ['py311']
3939
include = '\.pyi?$'
4040

4141
[tool.pytest.ini_options]

0 commit comments

Comments
 (0)