diff --git a/pyproject.toml b/pyproject.toml index 1809930..b1f5e13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytest-sanic" -version = "1.8.1" +version = "1.9.1" description = "a pytest plugin for Sanic" authors = ["Yun Xu "] license = "MIT" @@ -17,7 +17,7 @@ python = ">=3.7" pytest = ">=5.2" async_generator = "^1.10" httpx = ">=0.18.1" -websockets = ">=9.1,<10.0" +websockets = ">=9.1,<11.0" [tool.poetry.dev-dependencies] pytest = ">=5.3.5" diff --git a/pytest_sanic/__init__.py b/pytest_sanic/__init__.py index e8b6b09..35424e8 100644 --- a/pytest_sanic/__init__.py +++ b/pytest_sanic/__init__.py @@ -1 +1 @@ -__version__ = '1.8.1' +__version__ = '1.9.1' diff --git a/setup.py b/setup.py index b5b99e3..621d71b 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ tests_require = [] setup(name='pytest-sanic', - version='1.8.1', + version='1.9.1', description='a pytest plugin for Sanic', long_description=open(README_PATH).read(), author='Yun Xu',