Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add new req for allauth #521

Merged
merged 2 commits into from
Oct 20, 2023
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
2 changes: 1 addition & 1 deletion envs/conda/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ dependencies:
- distributed >=2022.7.1, <2023.2.0
- dj-database-url >=0.5.0, <1.4.0
- django >=4.0.0, <4.2.3
- django-allauth >=0.50.0, <=0.54.0
- django-allauth >=0.56.0, <=0.58.0
- django-contrib-comments >=2.2.0, <=2.2.0
- django-crispy-forms >=1.13.0, <=1.14.0
- django-pandas >=0.6.6, <=0.6.6
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ dependencies=[
"typer >=0.6.0, <0.7.1",
#
# Extra (smaller) dependencies & utilities
"django-allauth >=0.50.0, <=0.54.0", # for website accounts and google/github sign-ins
"django-allauth >=0.56.0, <=0.58.0", # for website accounts and google/github sign-ins
"django-contrib-comments >=2.2.0, <=2.2.0", # for tracking user comments in web
"django-crispy-forms >=1.13.0, <=1.14.0", # for formatting of online forms
"django-pandas >=0.6.6, <=0.6.6", # for converting QuerySets to PandasDataFrames
Expand Down
2 changes: 2 additions & 0 deletions src/simmate/configuration/django/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,8 @@
"django.middleware.clickjacking.XFrameOptionsMiddleware",
# This is for tracking WHO changes a model (attaches User)
"simple_history.middleware.HistoryRequestMiddleware",
# adds specific authentication methods, such as login by email
"allauth.account.middleware.AccountMiddleware",
]

# "core" here is based on the name of my main django folder
Expand Down
Loading