Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion auth_backends/backends.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ class EdXOAuth2(BaseOAuth2):
CLAIMS_TO_DETAILS_KEY_MAP = PROFILE_CLAIMS_TO_DETAILS_KEY_MAP

# This signal is fired after the user has successfully logged in.
auth_complete_signal = Signal(providing_args=['user'])
# providing_args=['user']
auth_complete_signal = Signal()
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Signal in Django3.2 does not need Arguments.


@property
# pylint: disable= missing-function-docstring
Expand Down
4 changes: 2 additions & 2 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ certifi==2021.10.8
# via requests
cffi==1.15.0
# via cryptography
charset-normalizer==2.0.8
charset-normalizer==2.0.9
# via requests
cryptography==36.0.0
# via
Expand All @@ -20,7 +20,7 @@ defusedxml==0.7.1
# via
# python3-openid
# social-auth-core
django==3.2.9
django==3.2.10
# via
# -c requirements/common_constraints.txt
# -r requirements/base.in
Expand Down
4 changes: 2 additions & 2 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ backports.entry-points-selectable==1.1.1
# via virtualenv
certifi==2021.10.8
# via requests
charset-normalizer==2.0.8
charset-normalizer==2.0.9
# via requests
codecov==2.1.12
# via -r requirements/ci.in
coverage==6.2
# via codecov
distlib==0.3.3
distlib==0.3.4
# via virtualenv
filelock==3.4.0
# via
Expand Down
12 changes: 6 additions & 6 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ cffi==1.15.0
# via
# -r requirements/test.txt
# cryptography
charset-normalizer==2.0.8
charset-normalizer==2.0.9
# via
# -r requirements/ci.txt
# -r requirements/test.txt
Expand Down Expand Up @@ -74,12 +74,12 @@ defusedxml==0.7.1
# -r requirements/test.txt
# python3-openid
# social-auth-core
distlib==0.3.3
distlib==0.3.4
# via
# -r requirements/ci.txt
# -r requirements/test.txt
# virtualenv
django==3.2.9
django==3.2.10
# via
# -c requirements/common_constraints.txt
# -r requirements/test.txt
Expand Down Expand Up @@ -175,7 +175,7 @@ pycparser==2.21
# via
# -r requirements/test.txt
# cffi
pycryptodomex==3.11.0
pycryptodomex==3.12.0
# via
# -r requirements/test.txt
# pyjwkest
Expand All @@ -185,7 +185,7 @@ pyjwt[crypto]==2.3.0
# via
# -r requirements/test.txt
# social-auth-core
pylint==2.12.1
pylint==2.12.2
# via
# -r requirements/test.txt
# edx-lint
Expand Down Expand Up @@ -217,7 +217,7 @@ pytest==6.2.5
# pytest-django
pytest-cov==3.0.0
# via -r requirements/test.txt
pytest-django==4.5.0
pytest-django==4.5.2
# via -r requirements/test.txt
python-slugify==5.0.2
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/pip.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ wheel==0.37.0
# The following packages are considered to be unsafe in a requirements file:
pip==21.3.1
# via -r requirements/pip.in
setuptools==59.4.0
setuptools==59.5.0
# via -r requirements/pip.in
10 changes: 5 additions & 5 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ cffi==1.15.0
# via
# -r requirements/base.txt
# cryptography
charset-normalizer==2.0.8
charset-normalizer==2.0.9
# via
# -r requirements/base.txt
# requests
Expand All @@ -53,7 +53,7 @@ defusedxml==0.7.1
# -r requirements/base.txt
# python3-openid
# social-auth-core
distlib==0.3.3
distlib==0.3.4
# via virtualenv
# via
# -c requirements/common_constraints.txt
Expand Down Expand Up @@ -115,15 +115,15 @@ pycparser==2.21
# via
# -r requirements/base.txt
# cffi
pycryptodomex==3.11.0
pycryptodomex==3.12.0
# via pyjwkest
pyjwkest==1.4.2
# via -r requirements/test.in
pyjwt[crypto]==2.3.0
# via
# -r requirements/base.txt
# social-auth-core
pylint==2.12.1
pylint==2.12.2
# via
# edx-lint
# pylint-celery
Expand All @@ -145,7 +145,7 @@ pytest==6.2.5
# pytest-django
pytest-cov==3.0.0
# via -r requirements/test.in
pytest-django==4.5.0
pytest-django==4.5.2
# via -r requirements/test.in
python-slugify==5.0.2
# via code-annotations
Expand Down