From 3915f216cdc20df0a88cbbc35bf579978765e2a3 Mon Sep 17 00:00:00 2001 From: abondar Date: Fri, 28 Feb 2020 14:33:26 +0300 Subject: [PATCH] Set upper bounds for major releases of dependencies --- requirements.txt | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/requirements.txt b/requirements.txt index bb616da..c63afc8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -aiohttp>=3.0.1 -apispec>=3.0.0 -webargs -jinja2 +aiohttp>=3.0.1,<4.0 +apispec>=3.0.0,<4.0 +webargs<6.0 +jinja2<3.0 diff --git a/setup.py b/setup.py index a5a99ea..a9471e4 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ def read(file_name): setup( name='aiohttp-apispec', - version='2.2.0', + version='2.2.1', description='Build and document REST APIs with aiohttp and apispec', long_description=read('README.md'), long_description_content_type="text/markdown",