Skip to content

Commit d7aac3f

Browse files
committed
Merge remote-tracking branch 'origin/optional-aiosqlite' into slim
2 parents c791681 + 820925b commit d7aac3f

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ up:
2424
uv lock --upgrade
2525

2626
deps:
27-
uv sync --frozen --all-groups --extra asyncpg --extra accel --extra psycopg --extra asyncodbc --extra aiomysql $(options)
27+
uv sync --frozen --all-groups --extra sqlite --extra asyncpg --extra accel --extra psycopg --extra asyncodbc --extra aiomysql $(options)
2828

2929
deps_with_asyncmy:
30-
uv sync --frozen --all-groups --extra asyncpg --extra accel --extra psycopg --extra asyncodbc --extra asyncmy $(options)
30+
uv sync --frozen --all-groups --extra sqlite --extra asyncpg --extra accel --extra psycopg --extra asyncodbc --extra asyncmy $(options)
3131

3232
check: build _check
3333
_check:
@@ -98,8 +98,7 @@ docs: deps
9898
uv run --frozen sphinx-build -M html docs build
9999

100100
build: deps
101-
rm -fR dist/
102-
uv build
101+
uv build --clear
103102

104103
publish: deps _build
105104
uv run --frozen twine upload dist/*

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ dynamic = [ "version" ]
99
requires-python = ">=3.9"
1010
dependencies = [
1111
"pypika-tortoise (>=0.6.3,<1.0.0)",
12-
"aiosqlite (>=0.16.0,<1.0.0)",
1312
"anyio",
1413
"typing-extensions (>= 4.1.0); python_version < '3.11'",
1514
]
@@ -42,6 +41,7 @@ accel = [
4241
"uvloop; sys_platform != 'win32' and implementation_name == 'cpython'",
4342
"orjson",
4443
]
44+
sqlite = ["aiosqlite (>=0.16.0,<1.0.0)"]
4545
asyncpg = ["asyncpg"]
4646
aiomysql = ["aiomysql"]
4747
asyncmy = ["asyncmy (>=0.2.8,<1.0.0); python_version < '4.0'"]

uv.lock

Lines changed: 5 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)