chore(deps): limit tortoise-orm version to >=0.21 instead of wildcard (*) (#388)

* Limit tortoise-orm version to `>=0.21` instead of wildcard (*)

* ci: fix typos

* docs: update changelog

* refactor: import MEMORY_SQLITE from tortoise

* Update changelog
This commit is contained in:
Waket Zheng
2024-12-21 11:04:02 +08:00
committed by GitHub
parent 69ce0cafa1
commit 1acb9ed1e7
5 changed files with 21 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ include = ["CHANGELOG.md", "LICENSE", "README.md"]
[tool.poetry.dependencies]
python = "^3.8"
tortoise-orm = "*"
tortoise-orm = ">=0.21"
asyncpg = { version = "*", optional = true }
asyncmy = { version = "^0.2.9", optional = true, allow-prereleases = true }
pydantic = "^2.0,!=2.7.0"