Skip to content

Commit

Permalink
bump project deps
Browse files Browse the repository at this point in the history
  • Loading branch information
grillazz committed Oct 17, 2024
1 parent 7504127 commit 0b301b7
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 55 deletions.
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async def lifespan(_app: FastAPI):
await _app.postgres_pool.close()


app = FastAPI(title="Stuff And Nonsense API", version="0.15", lifespan=lifespan)
app = FastAPI(title="Stuff And Nonsense API", version="0.16", lifespan=lifespan)

app.include_router(stuff_router)
app.include_router(nonsense_router)
Expand Down
115 changes: 64 additions & 51 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "fastapi-sqlalchemy-asyncpg"
version = "0.0.15"
version = "0.0.16"
description = ""
authors = ["Jakub Miazek <[email protected]>"]
packages = []
Expand All @@ -10,7 +10,7 @@ license = "MIT"
python = "^3.12"
fastapi = {version = "^0.115.2", extras = ["all"]}
pydantic = {version = "^2.9.2", extras = ["email"]}
pydantic-settings = "^2.5.2"
pydantic-settings = "^2.6.0"
sqlalchemy = "^2.0.36"
uvicorn = { version = "^0.32.0", extras = ["standard"]}
asyncpg = "^0.29.0"
Expand All @@ -19,7 +19,7 @@ httpx = "^0.27.2"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
uvloop = "^0.21.0"
httptools = "^0.6.2"
httptools = "^0.6.4"
rich = "^13.9.2"
pyjwt = {version = "^2.9.0", extras = ["cryptography"]}
redis = "^5.1.1"
Expand Down

0 comments on commit 0b301b7

Please sign in to comment.