Don't use exact versioning

This commit is contained in:
Mustafa Gezen 2023-07-15 20:05:19 +02:00
parent 2d8c654271
commit 73751dda6b
Signed by: mustafa
GPG Key ID: DCDF010D946438C1
1 changed files with 6 additions and 6 deletions

View File

@ -5,12 +5,12 @@ description = "Common Python library for Peridot projects"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"fastapi == 0.99.0",
"fastapi-pagination == 0.12.5",
"authlib == 1.2.1",
"httpx == 0.24.1",
"tortoise-orm[asyncpg] == 0.19.3",
"temporalio == 1.2.0"
"fastapi >= 0.99.0",
"fastapi-pagination >= 0.12.5",
"authlib >= 1.2.1",
"httpx >= 0.24.1",
"tortoise-orm[asyncpg] >= 0.19.3",
"temporalio >= 1.2.0"
]
authors = [
{ name = "Mustafa Gezen", email = "mustafa@rockylinux.org" }