relax library requirements

This commit is contained in:
Louis Abel 2024-12-18 12:40:03 -07:00
parent 9deed39fb1
commit 63a1cb3377
Signed by: label
GPG key ID: 2A6975660E424560
2 changed files with 6 additions and 6 deletions

View file

@ -13,9 +13,9 @@ maintainers = [
requires-python = ">=3.9"
dependencies = [
"fastapi == 0.115.5",
"paho-mqtt == 1.6.1",
"pydantic == 2.9.2"
"fastapi >= 0.115.5",
"paho-mqtt >= 1.6.1",
"pydantic >= 2.9.2"
"uvicorn >= 0.29.0"
]

View file

@ -1,4 +1,4 @@
fastapi==0.115.5
paho-mqtt==1.6.1
pydantic==2.9.2
fastapi>=0.115.5
paho-mqtt>=1.6.1
pydantic>=2.9.2
uvicorn>=0.29.0