Skip to content

Commit

Permalink
Merge pull request #169 from grillazz/158-granian-poc
Browse files Browse the repository at this point in the history
bump dev deps
  • Loading branch information
grillazz authored Aug 17, 2024
2 parents d94ef42 + 18b9a43 commit d4d99be
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ jobs:
- name: Test Code
run: poetry run pytest tests/
- name: Lint Code
run: poetry run ruff .
run: poetry run ruff check .
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Setup user authentication with JWT and Redis as token storage.
pyenv install 3.12 && pyenv local 3.12
```
```shell
poetry install
poetry install --with dev
```
Hope you enjoy it.

Expand Down
2 changes: 1 addition & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async def lifespan(_app: FastAPI):
await _app.postgres_pool.close()


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

app.include_router(stuff_router)
app.include_router(nonsense_router)
Expand Down
52 changes: 20 additions & 32 deletions poetry.lock

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

12 changes: 6 additions & 6 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.14"
version = "0.0.15"
description = ""
authors = ["Jakub Miazek <[email protected]>"]
packages = []
Expand Down Expand Up @@ -35,14 +35,14 @@ granian = "^1.5.2"
transformers = "^4.44.0"

[tool.poetry.group.dev.dependencies]
devtools = { extras = ["pygments"], version = "*" }
devtools = { extras = ["pygments"], version = "^0.12.2" }
safety = "*"
pyupgrade = "*"
ipython = "^8.24.0"
ruff = "^0.4.3"
ipython = "^8.26.0"
ruff = "^0.6.1"
sqlacodegen = "^3.0.0rc5"
tryceratops = "^2.3.2"
locust = "^2.27.0"
tryceratops = "^2.3.3"
locust = "^2.31.3"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit d4d99be

Please sign in to comment.