Skip to content

Commit bdabd4b

Browse files
3.0.2
1 parent c518d65 commit bdabd4b

File tree

3 files changed

+9
-69
lines changed

3 files changed

+9
-69
lines changed

pyproject.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
[project]
22
name = "quart-sqlalchemy"
3-
version = "3.0.1"
3+
version = "3.0.2"
44
description = "SQLAlchemy for humans, with framework adapter for Quart."
55
authors = [
66
{name = "Joe Black", email = "[email protected]"},
77
]
88
dependencies = [
9-
"quart~=0.18.3",
9+
"quart>=0.18.3",
1010
"SQLAlchemy[asyncio]>=1.4.35, <2.1.0",
1111
"SQLAlchemy-Utils",
12-
"anyio~=3.3.4",
12+
"anyio",
1313
"aiosqlite",
1414
"pydantic",
15-
"tenacity>=8.2.2",
16-
"sqlapagination<=0.0.1",
17-
"exceptiongroup<=1.1.1"
15+
"tenacity",
16+
"sqlapagination",
17+
"exceptiongroup"
1818
]
1919
requires-python = ">=3.7"
2020
readme = "README.rst"
@@ -31,11 +31,11 @@ build-backend = "setuptools.build_meta"
3131

3232
[project.optional-dependencies]
3333
tests = [
34-
"pytest~=7.2.1",
34+
"pytest",
3535
# "pytest-asyncio~=0.20.3",
3636
# "pytest-asyncio @ https://github.com/joeblackwaslike/pytest-asyncio/releases/download/v0.20.4.dev42/pytest_asyncio-0.20.4.dev42-py3-none-any.whl",
3737
"pytest-asyncio @ https://github.com/joeblackwaslike/pytest-asyncio/releases/download/v0.20.4.dev43/pytest_asyncio-0.20.4.dev43-py3-none-any.whl",
38-
"pytest-mock~=3.10.0",
38+
"pytest-mock",
3939
"pytest-cov",
4040
"coverage[toml]",
4141
]

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.1"
1+
__version__ = "3.0.2"
22

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

tests/integration/framework/expectations_test.py

Lines changed: 0 additions & 60 deletions
This file was deleted.

0 commit comments

Comments
 (0)