Skip to content

Commit

Permalink
add aiohttp dep for websocket connection
Browse files Browse the repository at this point in the history
- also remove services github link in deps in orchestrator
-- this was recently merged in nats-py
  • Loading branch information
swelborn committed Aug 24, 2024
1 parent e563e5d commit 69baa1f
Show file tree
Hide file tree
Showing 6 changed files with 1,393 additions and 19 deletions.
457 changes: 456 additions & 1 deletion backend/app/poetry.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions backend/app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ sentry-sdk = {extras = ["fastapi"], version = "^1.40.6"}
pyjwt = "^2.8.0"
nats-py = "^2.8.0"
core = {path = "../core", develop = true}
aiohttp = "^3.10.5"

[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
Expand Down
470 changes: 468 additions & 2 deletions backend/operators/poetry.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions backend/operators/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ pyzmq = "^26.1.0"
networkx = "^3.3"
numpy = "^1.26"
pydantic-settings = "^2.4.0"
aiohttp = "^3.10.5"


[build-system]
Expand Down
480 changes: 465 additions & 15 deletions backend/orchestrator/poetry.lock

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion backend/orchestrator/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.10"
nats-py = { git = "https://github.com/nats-io/nats.py.git", branch = "services" }
pydantic = "^2.8.2"
requests = "^2.32.3"
core = {path = "../core", develop = true}
pydantic-settings = "^2.4.0"
aiohttp = "^3.10.5"
nats-py = "^2.8.0"


[build-system]
Expand Down

0 comments on commit 69baa1f

Please sign in to comment.