Skip to content

Commit

Permalink
feat: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ovsds committed Nov 29, 2024
1 parent 02af37f commit d0922a8
Show file tree
Hide file tree
Showing 6 changed files with 955 additions and 914 deletions.
314 changes: 169 additions & 145 deletions .scripts/poetry.lock

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions backend/Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,11 @@ tasks:
cmds:
- echo 'Updating python dependencies...'
- poetry update

dependencies-check:
desc: Check python dependencies
cmds:
- echo 'Checking python dependencies...'
- poetry show --outdated

dev-server-start:
Expand Down
2 changes: 1 addition & 1 deletion backend/lib/task/repositories/queue/local/memory.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class TopicFinished(Exception):
def __init__(self, maxsize: int = 0):
self._closed = asyncio.Event()

self._consumed_items: set[T] = set()
self._consumed_items: set[typing.Hashable] = set()
super().__init__(maxsize=maxsize)

async def close(self) -> None:
Expand Down
877 changes: 492 additions & 385 deletions backend/poetry.lock

Large diffs are not rendered by default.

Loading

0 comments on commit d0922a8

Please sign in to comment.