From 6f411085e05fba3c3a89c9e5ee166c497d0e9bb2 Mon Sep 17 00:00:00 2001 From: hamzaaitbenyissa Date: Sun, 24 Dec 2023 13:21:52 +0100 Subject: [PATCH] update python version from 3.10 to 3.11 --- .github/workflows/pylint.yml | 2 +- .github/workflows/pytest.yml | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 508c1b4..49745f5 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -21,7 +21,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index fccab4e..24edb52 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -25,7 +25,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.10"] + python-version: ["3.11"] steps: - uses: actions/checkout@v2 diff --git a/Dockerfile b/Dockerfile index 0bbc4a2..eeeb268 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.10-alpine as base +FROM python:3.11-alpine as base FROM base as builder RUN apk add build-base RUN mkdir /install