Skip to content

Commit 7296407

Browse files
committed
fix(deps): relax dependency version constraints
1 parent 6d4e25b commit 7296407

File tree

2 files changed

+60
-55
lines changed

2 files changed

+60
-55
lines changed

pyproject.toml

Lines changed: 25 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -46,36 +46,44 @@ Changelog = "https://github.com/Athroniaeth/fastapi-api-key/blob/main/CHANGELOG.
4646

4747

4848
[project.optional-dependencies]
49+
4950
bcrypt = [
50-
"bcrypt>=5.0.0",
51+
"bcrypt>=4.1.0",
5152
]
53+
5254
argon2 = [
53-
"argon2-cffi>=25.1.0",
55+
"argon2-cffi>=23.1.0",
5456
]
57+
5558
sqlalchemy = [
56-
"sqlalchemy>=2.0.43",
59+
"sqlalchemy>=2.0.0",
5760
]
61+
5862
aiocache = [
59-
"aiocache>=0.12.3",
60-
]
61-
core = [
62-
"sqlalchemy>=2.0.43",
63-
"argon2-cffi>=25.1.0",
64-
"bcrypt>=5.0.0",
65-
"aiocache>=0.12.3",
63+
"aiocache>=0.12.0",
6664
]
65+
6766
fastapi = [
68-
"fastapi>=0.118.0",
67+
"fastapi>=0.100.0",
6968
]
69+
70+
core = [
71+
"sqlalchemy>=2.0.0",
72+
"argon2-cffi>=23.1.0",
73+
"bcrypt>=4.1.0",
74+
"aiocache>=0.12.0",
75+
]
76+
7077
all = [
71-
"fastapi>=0.118.0",
72-
"sqlalchemy>=2.0.43",
73-
"argon2-cffi>=25.1.0",
74-
"bcrypt>=5.0.0",
75-
"aiocache>=0.12.3",
78+
"fastapi>=0.100.0",
79+
"sqlalchemy>=2.0.0",
80+
"argon2-cffi>=23.1.0",
81+
"bcrypt>=4.1.0",
82+
"aiocache>=0.12.0",
7683
]
84+
7785
cli = [
78-
"typer>=0.12.5",
86+
"typer>=0.9.0",
7987
]
8088

8189
[build-system]

uv.lock

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

0 commit comments

Comments
 (0)