Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ keywords = ["sql", "mysql", "postgres", "psql", "sqlite", "aiosqlite", "asyncpg"
dynamic = [ "version" ]
requires-python = ">=3.9"
dependencies = [
"pypika-tortoise (>=0.6.1,<1.0.0)",
"pypika-tortoise (>=0.6.2,<1.0.0)",
"iso8601 (>=2.1.0,<3.0.0); python_version < '4.0'",
"aiosqlite (>=0.16.0,<1.0.0)",
"pytz",
Expand Down
2 changes: 0 additions & 2 deletions tests/test_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,8 +209,6 @@ async def test_update_with_limit_ordering(self):
self.assertIs((await Tournament.get(pk=t2.pk)).name, "2")
self.assertEqual(await Tournament.filter(name="1").count(), 1)

# tortoise-pypika does not translate ** to POWER in MSSQL
@test.requireCapability(dialect=NotEQ("mssql"))
async def test_update_with_case_when_and_f(self):
event1 = await IntFields.create(intnum=1)
event2 = await IntFields.create(intnum=2)
Expand Down
Loading