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

build: add pymemcache to dependencies #2159

Merged
merged 1 commit into from
Sep 4, 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
6 changes: 5 additions & 1 deletion requirements/all.txt
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ distro==1.8.0
# via
# -r requirements/dev.txt
# docker-compose
django==3.2.20
django==3.2.21
# via
# -c requirements/common_constraints.txt
# -c requirements/constraints.txt
Expand Down Expand Up @@ -542,6 +542,10 @@ pylint-plugin-utils==0.8.2
# -r requirements/dev.txt
# pylint-celery
# pylint-django
pymemcache==4.0.0
# via
# -r requirements/dev.txt
# -r requirements/production.txt
pymongo==3.13.0
# via
# -r requirements/dev.txt
Expand Down
1 change: 1 addition & 0 deletions requirements/base.in
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ newrelic
pillow
pygments
python-memcached
pymemcache
pytz
qrcode
requests
Expand Down
4 changes: 3 additions & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ defusedxml==0.7.1
# social-auth-core
didkit==0.3.2
# via -r requirements/base.in
django==3.2.20
django==3.2.21
# via
# -c requirements/common_constraints.txt
# -c requirements/constraints.txt
Expand Down Expand Up @@ -218,6 +218,8 @@ pyjwt[crypto]==2.8.0
# edx-drf-extensions
# edx-rest-api-client
# social-auth-core
pymemcache==4.0.0
# via -r requirements/base.in
pymongo==3.13.0
# via edx-opaque-keys
pynacl==1.5.0
Expand Down
4 changes: 3 additions & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ distlib==0.3.7
# virtualenv
distro==1.8.0
# via docker-compose
django==3.2.20
django==3.2.21
# via
# -c requirements/common_constraints.txt
# -c requirements/constraints.txt
Expand Down Expand Up @@ -411,6 +411,8 @@ pylint-plugin-utils==0.8.2
# -r requirements/test.txt
# pylint-celery
# pylint-django
pymemcache==4.0.0
# via -r requirements/test.txt
pymongo==3.13.0
# via
# -r requirements/test.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/django.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
django==3.2.20
django==3.2.21
4 changes: 3 additions & 1 deletion requirements/production.txt
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ defusedxml==0.7.1
# social-auth-core
didkit==0.3.2
# via -r requirements/base.txt
django==3.2.20
django==3.2.21
# via
# -c requirements/common_constraints.txt
# -c requirements/constraints.txt
Expand Down Expand Up @@ -297,6 +297,8 @@ pyjwt[crypto]==2.8.0
# edx-drf-extensions
# edx-rest-api-client
# social-auth-core
pymemcache==4.0.0
# via -r requirements/base.txt
pymongo==3.13.0
# via
# -r requirements/base.txt
Expand Down
2 changes: 2 additions & 0 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,8 @@ pylint-plugin-utils==0.8.2
# via
# pylint-celery
# pylint-django
pymemcache==4.0.0
# via -r requirements/base.txt
pymongo==3.13.0
# via
# -r requirements/base.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/translations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#
asgiref==3.7.2
# via django
django==3.2.20
django==3.2.21
# via
# -c requirements/common_constraints.txt
# -c requirements/constraints.txt
Expand Down
Loading