Skip to content

Commit 70e886b

Browse files
authored
Merge pull request #282 from geoadmin/bugfixe_dependabot
Updated packages.
2 parents f889143 + aa453f1 commit 70e886b

File tree

4 files changed

+317
-263
lines changed

4 files changed

+317
-263
lines changed

.pylintrc

+1
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ disable=missing-docstring,
7373
# yapf correct indentation continuation issue
7474
useless-object-inheritance,
7575
no-self-use, # method signature often defined by django
76+
similarities # currently similarities has a bug when running pylint with jobs>=2
7677

7778

7879
# Enable the message, report, category or checker with the given id(s). You can

Pipfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ verify_ssl = true
66
[dev-packages]
77
yapf = "~=0.30.0"
88
isort = "~=4.3.21"
9-
pylint = "!=2.7.2,!=2.7.1,!=2.7.0" # These version of pylint have issues with similarities config
9+
pylint = "*"
1010
pylint-django = "*"
1111
django-extensions = "*"
12-
django-debug-toolbar = "*"
12+
django-debug-toolbar = ">=3.2.1"
1313
pip = "*"
1414
tblib = "*" # needed for traceback when running tests in parallel
1515
mock = "~=4.0.2"
@@ -25,8 +25,8 @@ logging-utilities = "~=1.2.0"
2525
numpy = "~=1.19.2"
2626
python-dotenv = "~=0.14.0"
2727
djangorestframework = "~=3.12.1"
28-
Django = "~=3.1"
29-
PyYAML = "~=5.3.1"
28+
Django = "~=3.1.8"
29+
PyYAML = "~=5.4"
3030
whitenoise = "~=5.2.0"
3131
djangorestframework-gis = "~=0.16"
3232
python-dateutil = "~=2.8.1"

0 commit comments

Comments
 (0)