Skip to content

Commit e909769

Browse files
feat(python): Update (#208)
### Changed - Updated Python to 3.12
1 parent b7f6e9e commit e909769

File tree

6 files changed

+171
-150
lines changed

6 files changed

+171
-150
lines changed

.github/workflows/black.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v4
1010
- uses: actions/setup-python@v5
1111
with:
12-
python-version: '3.11'
12+
python-version: '3.12'
1313
- uses: psf/black@stable
1414
with:
1515
options: ". --check --line-length 100"

.github/workflows/build_and_publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.11"
19+
python-version: "3.12"
2020

2121
- name: Install poetry
2222
uses: snok/install-poetry@v1

.github/workflows/coveralls.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v5
1414
with:
15-
python-version: "3.11"
15+
python-version: "3.12"
1616

1717
- name: Install and configure Poetry
1818
uses: snok/install-poetry@v1

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/library/python:3.11-slim-bullseye
1+
FROM docker.io/library/python:3.12-slim-bullseye
22

33
WORKDIR /app
44
COPY . /app/

0 commit comments

Comments
 (0)