Skip to content

Commit

Permalink
3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joeblackwaslike committed Mar 29, 2023
1 parent c518d65 commit bdabd4b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 69 deletions.
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[project]
name = "quart-sqlalchemy"
version = "3.0.1"
version = "3.0.2"
description = "SQLAlchemy for humans, with framework adapter for Quart."
authors = [
{name = "Joe Black", email = "[email protected]"},
]
dependencies = [
"quart~=0.18.3",
"quart>=0.18.3",
"SQLAlchemy[asyncio]>=1.4.35, <2.1.0",
"SQLAlchemy-Utils",
"anyio~=3.3.4",
"anyio",
"aiosqlite",
"pydantic",
"tenacity>=8.2.2",
"sqlapagination<=0.0.1",
"exceptiongroup<=1.1.1"
"tenacity",
"sqlapagination",
"exceptiongroup"
]
requires-python = ">=3.7"
readme = "README.rst"
Expand All @@ -31,11 +31,11 @@ build-backend = "setuptools.build_meta"

[project.optional-dependencies]
tests = [
"pytest~=7.2.1",
"pytest",
# "pytest-asyncio~=0.20.3",
# "pytest-asyncio @ https://github.com/joeblackwaslike/pytest-asyncio/releases/download/v0.20.4.dev42/pytest_asyncio-0.20.4.dev42-py3-none-any.whl",
"pytest-asyncio @ https://github.com/joeblackwaslike/pytest-asyncio/releases/download/v0.20.4.dev43/pytest_asyncio-0.20.4.dev43-py3-none-any.whl",
"pytest-mock~=3.10.0",
"pytest-mock",
"pytest-cov",
"coverage[toml]",
]
Expand Down
2 changes: 1 addition & 1 deletion src/quart_sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.0.1"
__version__ = "3.0.2"

from .bind import AsyncBind
from .bind import Bind
Expand Down
60 changes: 0 additions & 60 deletions tests/integration/framework/expectations_test.py

This file was deleted.

0 comments on commit bdabd4b

Please sign in to comment.