relax library requirements
This commit is contained in:
parent
9deed39fb1
commit
63a1cb3377
2 changed files with 6 additions and 6 deletions
|
@ -13,9 +13,9 @@ maintainers = [
|
||||||
requires-python = ">=3.9"
|
requires-python = ">=3.9"
|
||||||
|
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"fastapi == 0.115.5",
|
"fastapi >= 0.115.5",
|
||||||
"paho-mqtt == 1.6.1",
|
"paho-mqtt >= 1.6.1",
|
||||||
"pydantic == 2.9.2"
|
"pydantic >= 2.9.2"
|
||||||
"uvicorn >= 0.29.0"
|
"uvicorn >= 0.29.0"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
fastapi==0.115.5
|
fastapi>=0.115.5
|
||||||
paho-mqtt==1.6.1
|
paho-mqtt>=1.6.1
|
||||||
pydantic==2.9.2
|
pydantic>=2.9.2
|
||||||
uvicorn>=0.29.0
|
uvicorn>=0.29.0
|
||||||
|
|
Loading…
Reference in a new issue