Skip to content

Commit d4d99be

Browse files
authored
Merge pull request #169 from grillazz/158-granian-poc
bump dev deps
2 parents d94ef42 + 18b9a43 commit d4d99be

File tree

5 files changed

+29
-41
lines changed

5 files changed

+29
-41
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ jobs:
6262
- name: Test Code
6363
run: poetry run pytest tests/
6464
- name: Lint Code
65-
run: poetry run ruff .
65+
run: poetry run ruff check .

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Setup user authentication with JWT and Redis as token storage.
130130
pyenv install 3.12 && pyenv local 3.12
131131
```
132132
```shell
133-
poetry install
133+
poetry install --with dev
134134
```
135135
Hope you enjoy it.
136136

app/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async def lifespan(_app: FastAPI):
4545
await _app.postgres_pool.close()
4646

4747

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

5050
app.include_router(stuff_router)
5151
app.include_router(nonsense_router)

poetry.lock

Lines changed: 20 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "fastapi-sqlalchemy-asyncpg"
3-
version = "0.0.14"
3+
version = "0.0.15"
44
description = ""
55
authors = ["Jakub Miazek <the@grillazz.com>"]
66
packages = []
@@ -35,14 +35,14 @@ granian = "^1.5.2"
3535
transformers = "^4.44.0"
3636

3737
[tool.poetry.group.dev.dependencies]
38-
devtools = { extras = ["pygments"], version = "*" }
38+
devtools = { extras = ["pygments"], version = "^0.12.2" }
3939
safety = "*"
4040
pyupgrade = "*"
41-
ipython = "^8.24.0"
42-
ruff = "^0.4.3"
41+
ipython = "^8.26.0"
42+
ruff = "^0.6.1"
4343
sqlacodegen = "^3.0.0rc5"
44-
tryceratops = "^2.3.2"
45-
locust = "^2.27.0"
44+
tryceratops = "^2.3.3"
45+
locust = "^2.31.3"
4646

4747
[build-system]
4848
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)