-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(storage) Remove location_id * feat(deriver) Deriver can process multiple sessions at once and uses rich for prints * fix(route) collection update error handling * chore(docs) update openapi and version numbers
- Loading branch information
1 parent
ddcde6b
commit 1e40778
Showing
19 changed files
with
4,732 additions
and
259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "honcho" | ||
version = "0.0.10" | ||
version = "0.0.11" | ||
description = "Honcho Server" | ||
authors = ["Plastic Labs <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -18,12 +18,13 @@ sentry-sdk = {extras = ["fastapi", "sqlalchemy"], version = "^2.3.1"} | |
greenlet = "^3.0.3" | ||
psycopg = {extras= ["binary"], version="^3.1.19"} | ||
httpx = "^0.27.0" | ||
mirascope = "^0.15.1" | ||
mirascope = "^0.18.2" | ||
opentelemetry-instrumentation-fastapi = "^0.45b0" | ||
opentelemetry-sdk = "^1.24.0" | ||
opentelemetry-exporter-otlp = "^1.24.0" | ||
opentelemetry-instrumentation-sqlalchemy = "^0.45b0" | ||
opentelemetry-instrumentation-logging = "^0.45b0" | ||
rich = "^13.7.1" | ||
|
||
[tool.poetry.group.test.dependencies] | ||
pytest = "^8.2.2" | ||
|
@@ -48,6 +49,8 @@ select = [ | |
# isort | ||
"I", | ||
] | ||
ignore = ["E501"] | ||
|
||
[tool.ruff.flake8-bugbear] | ||
extend-immutable-calls = ["fastapi.Depends"] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import asyncio | ||
|
||
import uvloop | ||
|
||
from .queue import main | ||
|
||
if __name__ == "__main__": | ||
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy()) | ||
asyncio.run(main()) |
Oops, something went wrong.