Skip to content

Commit e706926

Browse files
Bump python from 3.9-slim to 3.10.5-slim (#94)
* Bump python from 3.9-slim to 3.10.5-slim Bumps python from 3.9-slim to 3.10.5-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Use python 3.10 Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mathieu Leplatre <[email protected]>
1 parent b9dd70f commit e706926

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
run: pipx install poetry
1212
- uses: actions/setup-python@v4
1313
with:
14-
python-version: "3.9"
14+
python-version: "3.10"
1515
cache: "poetry"
1616
- name: Install dependencies
1717
run: poetry install

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
run: pipx install poetry
1212
- uses: actions/setup-python@v4
1313
with:
14-
python-version: "3.9"
14+
python-version: "3.10"
1515
cache: "poetry"
1616
- name: Install dependencies
1717
run: poetry install

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Creating a python base with shared environment variables
2-
FROM python:3.9-slim as python-base
2+
FROM python:3.10.5-slim as python-base
33
ENV PYTHONPATH=/app \
44
PYTHONUNBUFFERED=1 \
55
PYTHONDONTWRITEBYTECODE=1 \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ env_files = [
6969
profile = "black"
7070

7171
[tool.mypy]
72-
python_version = "3.9"
72+
python_version = "3.10"
7373
# Warn when returning Any from function with non-Any return
7474
warn_return_any = true
7575

0 commit comments

Comments
 (0)