From cd56bd30274f97df7042f1113ef378b1b98d0981 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Fri, 9 Apr 2021 12:11:56 +0000 Subject: [PATCH] Update webargs requirement from ~=6.0 to >=6,<9 Updates the requirements on [webargs](https://github.com/marshmallow-code/webargs) to permit the latest version. - [Release notes](https://github.com/marshmallow-code/webargs/releases) - [Changelog](https://github.com/marshmallow-code/webargs/blob/dev/CHANGELOG.rst) - [Commits](https://github.com/marshmallow-code/webargs/compare/6.0.0...8.0.0) Signed-off-by: dependabot-preview[bot] --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2a917d3..dd803d4 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import re from setuptools import setup, find_packages -INSTALL_REQUIRES = ["webargs~=6.0", "starlette>=0.9.0", "marshmallow~=3.0"] +INSTALL_REQUIRES = ["webargs>=6,<9", "starlette>=0.9.0", "marshmallow~=3.0"] EXTRAS_REQUIRE = { "tests": ["pytest", "mock", "webtest~=2.0.32", "webtest-asgi~=1.0.1"], "examples": ["httpie", "uvicorn"],