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

chore: Catch up on dependency upgrades, fix lint error #51

Merged
merged 2 commits into from
Oct 11, 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 edx_event_bus_redis/internal/tests/test_consumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ def test_malformed_receiver_errors(self):
"""
with pytest.raises(ReceiverError) as exc_info:
self.event_consumer._check_receiver_results([ # pylint: disable=protected-access
(lambda x:x, Exception("for lambda")),
(lambda x: x, Exception("for lambda")),
# This would actually raise an error inside send_robust(), but it will serve well enough for testing...
("not even a function", ValueError("just plain bad")),
], self.signal)
Expand Down
41 changes: 23 additions & 18 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,53 +4,54 @@
#
# make upgrade
#
asgiref==3.6.0
asgiref==3.7.2
# via django
async-timeout==4.0.2
async-timeout==4.0.3
# via redis
attrs==23.1.0
# via openedx-events
cffi==1.15.1
cffi==1.16.0
# via pynacl
click==8.1.3
click==8.1.7
# via
# code-annotations
# edx-django-utils
code-annotations==1.3.0
code-annotations==1.5.0
# via edx-toggles
django==3.2.19
django==3.2.21
# via
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/base.in
# django-crum
# django-waffle
# edx-django-utils
# edx-toggles
# openedx-events
django-crum==0.7.9
# via
# edx-django-utils
# edx-toggles
django-waffle==3.0.0
django-waffle==4.0.0
# via
# edx-django-utils
# edx-toggles
edx-django-utils==5.4.0
edx-django-utils==5.7.0
# via
# -r requirements/base.in
# edx-toggles
edx-opaque-keys[django]==2.3.0
edx-opaque-keys[django]==2.5.1
# via openedx-events
edx-toggles==5.0.0
edx-toggles==5.1.0
# via -r requirements/base.in
fastavro==1.7.4
fastavro==1.8.3
# via openedx-events
jinja2==3.1.2
# via code-annotations
markupsafe==2.1.2
markupsafe==2.1.3
# via jinja2
newrelic==8.8.0
newrelic==9.1.0
# via edx-django-utils
openedx-events==8.0.0
openedx-events==8.7.0
# via -r requirements/base.in
pbr==5.11.1
# via stevedore
Expand All @@ -64,11 +65,11 @@ pynacl==1.5.0
# via edx-django-utils
python-slugify==8.0.1
# via code-annotations
pytz==2023.3
pytz==2023.3.post1
# via django
pyyaml==6.0
pyyaml==6.0.1
# via code-annotations
redis==4.5.5
redis==5.0.1
# via walrus
sqlparse==0.4.4
# via django
Expand All @@ -79,5 +80,9 @@ stevedore==5.1.0
# edx-opaque-keys
text-unidecode==1.3
# via python-slugify
walrus==0.9.2
typing-extensions==4.8.0
# via
# asgiref
# edx-opaque-keys
walrus==0.9.3
# via -r requirements/base.in
14 changes: 7 additions & 7 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
#
# make upgrade
#
distlib==0.3.6
distlib==0.3.7
# via virtualenv
filelock==3.12.0
filelock==3.12.4
# via
# tox
# virtualenv
packaging==23.1
packaging==23.2
# via tox
platformdirs==3.5.1
platformdirs==3.11.0
# via virtualenv
pluggy==1.0.0
pluggy==1.3.0
# via tox
py==1.11.0
# via tox
Expand All @@ -27,7 +27,7 @@ tox==3.28.0
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
# -r requirements/ci.in
# tox-battery
tox-battery==0.6.1
tox-battery==0.6.2
# via -r requirements/ci.in
virtualenv==20.23.0
virtualenv==20.24.5
# via tox
Loading
Loading