From bc68698be619b3c661356aac8cb095a313edec5c Mon Sep 17 00:00:00 2001 From: Patrick O'Hara Date: Mon, 29 Jan 2024 10:12:37 +0000 Subject: [PATCH] Upgrade docker python version --- .pylintrc | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index c1d3b84..56581ff 100644 --- a/.pylintrc +++ b/.pylintrc @@ -82,7 +82,7 @@ persistent=yes # Minimum Python version to use for version dependent checks. Will default to # the version used to run pylint. -py-version=3.8 +py-version=3.10 # Discover python modules and packages in the file system subtree. recursive=no diff --git a/Dockerfile b/Dockerfile index 9cfb7ed..a347f8d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8 +FROM python:3.12 WORKDIR /app