From a63a657373b4942376a1d764f57211261eceb06a Mon Sep 17 00:00:00 2001 From: Leo Smerling Date: Mon, 10 Feb 2025 11:40:22 +0100 Subject: [PATCH] chore: pin aiotthp version to <4 to allow 3.11 and future 3.x aiohttp updates --- aiohttp_swagger3/__init__.py | 2 +- docs/conf.py | 2 +- requirements.txt | 2 +- setup.py | 2 ++ 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/aiohttp_swagger3/__init__.py b/aiohttp_swagger3/__init__.py index 1a7a79f..24b9d96 100644 --- a/aiohttp_swagger3/__init__.py +++ b/aiohttp_swagger3/__init__.py @@ -12,7 +12,7 @@ "ValidatorError", "__version__", ) -__version__ = "0.9.0" +__version__ = "0.10.0" __author__ = "Valetov Konstantin" from .exceptions import ValidatorError diff --git a/docs/conf.py b/docs/conf.py index 9ab685e..e4cb89e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Konstantin Valetov' # The full version, including alpha/beta/rc tags -release = '0.9.0' +release = '0.10.0' # -- General configuration --------------------------------------------------- diff --git a/requirements.txt b/requirements.txt index db04f46..d0d7f5e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -aiohttp>=3.8.0,<3.11.0 +aiohttp>=3.8.0,<4 pyyaml>=5.4.0 attrs>=19.3.0 fastjsonschema>=2.15.0,<2.20.0 diff --git a/setup.py b/setup.py index c02868a..09b144c 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,8 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Development Status :: 4 - Beta", "Operating System :: POSIX", "Operating System :: MacOS :: MacOS X",