-
Notifications
You must be signed in to change notification settings - Fork 5
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
deps: bump minver for celery/kombu to 5.3.0 #113
Conversation
@@ -121,7 +113,7 @@ def _iter_folder( | |||
queue: Optional name of queue. | |||
""" | |||
with self.connection_for_read() as conn: # type: ignore[attr-defined] | |||
with conn.channel() as channel: | |||
with conn.channel() as channel: # type: ignore[attr-defined] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
celery-types does not have type stub for Channel
as a contextmanager yet.
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #113 +/- ##
==========================================
+ Coverage 78.15% 85.79% +7.64%
==========================================
Files 21 20 -1
Lines 1007 838 -169
Branches 154 129 -25
==========================================
- Hits 787 719 -68
+ Misses 194 97 -97
+ Partials 26 22 -4
☔ View full report in Codecov by Sentry. |
celery-types>=0.16.0 uses typing features that are only available on Python 3.10+, so I have pinned it to 0.15.0 for now. |
No description provided.