From 354a49956a53d37f9892bc8fff8e5cb2cf716502 Mon Sep 17 00:00:00 2001 From: DMarinhoCodacy <102817200+DMarinhoCodacy@users.noreply.github.com> Date: Mon, 12 Aug 2024 11:56:08 +0100 Subject: [PATCH] Bump packages requirements (#243) * Revert docker image to python3.11 due to pylint compatibility --- Dockerfile | 2 +- requirements.txt | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6e231df..20a9934 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-alpine3.20 +FROM python:3.11-alpine3.20 COPY requirements.txt requirements.txt RUN pip3 install --no-cache-dir -r requirements.txt COPY src/codacy_prospector.py codacy_prospector.py diff --git a/requirements.txt b/requirements.txt index 3037f5d..599e7b2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,10 +1,10 @@ mypy==1.11.1 prospector[with_everything]==1.10.3 jsonpickle==3.2.2 -Django==5.0.7 +Django==5.1 Flask==3.0.3 #can't upgrade to the latest version of Pylint due to a mismatch on astroid versions -#requirements-detector 1.2.2 depends on astroid<3.0 and >=2.0 -#pylint 3.2.6 depends on astroid<=3.3.0-dev0 and >=3.2.4 +#requirements-detector (from prospector) 1.2.2 depends on astroid<3.0 and >=2.0 +#pylint 3.x depends on astroid<=3.3.0-dev0 and >=3.2.4 pylint==2.17.7