Skip to content

Commit 1de1f7b

Browse files
fix version constraint
1 parent 9a68b92 commit 1de1f7b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

pdm.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "quart-sqlalchemy"
3-
version = "3.0.3"
3+
version = "3.0.4"
44
description = "SQLAlchemy for humans, with framework adapter for Quart."
55
authors = [
66
{name = "Joe Black", email = "[email protected]"},
@@ -11,7 +11,7 @@ dependencies = [
1111
"blinker<1.7,>=1.5",
1212
"SQLAlchemy[asyncio]<2.1.0,>=2.0.0",
1313
"SQLAlchemy-Utils",
14-
"anyio~=3.3.4",
14+
"anyio>=3.0.0,<4",
1515
"pydantic~=1.10.13",
1616
"tenacity~=8.0.1",
1717
"sqlapagination",

src/quart_sqlalchemy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.3"
1+
__version__ = "3.0.4"
22

33
from .bind import AsyncBind
44
from .bind import Bind

0 commit comments

Comments
 (0)