Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6bb9109

Browse files
committedApr 4, 2024·
fix: update fastapi version
1 parent f093e32 commit 6bb9109

5 files changed

+49
-46
lines changed
 

‎.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
.github/
33
.pytest_cache/
44
.coverage
5+
.ruff_cache/

‎.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -158,3 +158,6 @@ cython_debug/
158158
# and can be added to the global gitignore or merged into this file. For a more nuclear
159159
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
160160
#.idea/
161+
162+
# Ruff cache
163+
.ruff_cache/

‎.pre-commit-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ repos:
1818
- id: trailing-whitespace
1919

2020
- repo: https://github.com/astral-sh/ruff-pre-commit
21-
rev: v0.3.4
21+
rev: v0.3.5
2222
hooks:
2323
- id: ruff
2424
- id: ruff-format

‎poetry.lock

+35-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎pyproject.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ readme = "README.md"
88
[tool.poetry.dependencies]
99
python = "^3.12"
1010
qrcode = {extras = ["pil"], version = "^7.4.2"}
11-
pycryptodome = "^3.19.0"
12-
fastapi = "^0.104.1"
13-
uvicorn = {extras = ["standard"], version = "^0.24.0.post1"}
14-
pydantic-settings = "^2.1.0"
15-
jinja2 = "^3.1.2"
11+
pycryptodome = "^3.20.0"
12+
fastapi = "^0.110.1"
13+
uvicorn = {extras = ["standard"], version = "^0.29.0"}
14+
pydantic-settings = "^2.2.1"
15+
jinja2 = "^3.1.3"
1616

1717
[tool.poetry.group.test.dependencies]
18-
pytest = "^7.4.3"
19-
pre-commit = "^3.5.0"
20-
pytest-cov = "^4.1.0"
21-
httpx = "^0.25.1"
18+
pytest = "^8.1.1"
19+
pre-commit = "^3.7.0"
20+
pytest-cov = "^5.0.0"
21+
httpx = "^0.27.0"
2222

2323
[build-system]
2424
requires = ["poetry-core"]

0 commit comments

Comments
 (0)
Please sign in to comment.