Skip to content

Commit

Permalink
Bump packages requirements (#243)
Browse files Browse the repository at this point in the history
* Revert docker image to python3.11 due to pylint compatibility
  • Loading branch information
DMarinhoCodacy authored Aug 12, 2024
1 parent 2fe62e4 commit 354a499
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 354a499

Please sign in to comment.