Skip to content

Commit

Permalink
feat: pylint update change way to load config
Browse files Browse the repository at this point in the history
  • Loading branch information
johanseto committed Feb 9, 2024
1 parent ac07a9a commit 9c22abd
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 20 deletions.
12 changes: 6 additions & 6 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
#
asgiref==3.7.2
# via django
certifi==2023.11.17
certifi==2024.2.2
# via requests
cffi==1.16.0
# via cryptography
charset-normalizer==3.3.2
# via requests
cryptography==41.0.7
cryptography==42.0.2
# via social-auth-core
defusedxml==0.8.0rc2
# via
# python3-openid
# social-auth-core
django==3.2.23
django==3.2.24
# via
# -c requirements/constraints.txt
# -r requirements/base.in
Expand Down Expand Up @@ -69,7 +69,7 @@ pymongo==3.13.0
# edx-opaque-keys
python3-openid==3.2.0
# via social-auth-core
pytz==2023.3.post1
pytz==2024.1
# via
# django
# djangorestframework
Expand All @@ -83,13 +83,13 @@ six==1.16.0
# via
# -c requirements/constraints.txt
# -r requirements/base.in
social-auth-core==4.5.1
social-auth-core==4.5.2
# via -r requirements/base.in
sqlparse==0.4.4
# via django
stevedore==5.1.0
# via edx-opaque-keys
typing-extensions==4.9.0
# via asgiref
urllib3==2.1.0
urllib3==2.2.0
# via requests
2 changes: 1 addition & 1 deletion requirements/django.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
django==3.2.23
django==3.2.24
16 changes: 8 additions & 8 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ asgiref==3.7.2
# django
astroid==2.15.8
# via pylint
certifi==2023.11.17
certifi==2024.2.2
# via
# -r requirements/base.txt
# requests
Expand All @@ -26,7 +26,7 @@ coverage==6.5.0
# via
# -c requirements/constraints.txt
# -r requirements/test.in
cryptography==41.0.7
cryptography==42.0.2
# via
# -r requirements/base.txt
# social-auth-core
Expand All @@ -39,7 +39,7 @@ defusedxml==0.8.0rc2
# -r requirements/base.txt
# python3-openid
# social-auth-core
dill==0.3.7
dill==0.3.8
# via pylint
# via
# -c requirements/constraints.txt
Expand Down Expand Up @@ -97,7 +97,7 @@ openedx-filters==1.2.0
# via
# -c requirements/constraints.txt
# -r requirements/base.txt
path==16.9.0
path==16.10.0
# via path-py
path-py==12.5.0
# via
Expand All @@ -107,7 +107,7 @@ pbr==6.0.0
# via
# -r requirements/base.txt
# stevedore
platformdirs==4.1.0
platformdirs==4.2.0
# via pylint
pycodestyle==2.8.0
# via
Expand All @@ -134,7 +134,7 @@ python3-openid==3.2.0
# via
# -r requirements/base.txt
# social-auth-core
pytz==2023.3.post1
pytz==2024.1
# via
# -r requirements/base.txt
# django
Expand All @@ -152,7 +152,7 @@ six==1.16.0
# via
# -c requirements/constraints.txt
# -r requirements/base.txt
social-auth-core==4.5.1
social-auth-core==4.5.2
# via -r requirements/base.txt
sqlparse==0.4.4
# via
Expand All @@ -176,7 +176,7 @@ typing-extensions==4.9.0
# asgiref
# astroid
# pylint
urllib3==2.1.0
urllib3==2.2.0
# via
# -r requirements/base.txt
# requests
Expand Down
6 changes: 3 additions & 3 deletions requirements/tox.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ packaging==23.2
# via
# pyproject-api
# tox
platformdirs==4.1.0
platformdirs==4.2.0
# via
# tox
# virtualenv
pluggy==1.3.0
pluggy==1.4.0
# via tox
pyproject-api==1.6.1
# via tox
tomli==2.0.1
# via
# pyproject-api
# tox
tox==4.11.4
tox==4.12.1
# via -r requirements/tox.in
virtualenv==20.25.0
# via tox
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ ignore = E501, W503
max-line-length = 120
statistics = True

[pylint]
[pylint.FORMAT]
ignore = migrations,CVS
generated-members = objects
max-line-length = 120

[MESSAGES CONTROL]
[pylint.MESSAGES CONTROL]
enable =
line-too-long,
syntax-error,
Expand Down

0 comments on commit 9c22abd

Please sign in to comment.