From 3991c82c91b3b923ccdc75801cf52f6cf87bbf8f Mon Sep 17 00:00:00 2001 From: Steven Loria Date: Mon, 15 Oct 2018 19:45:06 -0400 Subject: [PATCH] Depend on apispec>=1.0.0b1 The current code depends on the `apispec.yaml_utils` module, which only exists in apispec 1.0.0b. Close #52 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b256a41..bb779c2 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ required = [ "rfc3986", "python-multipart", "chardet", - "apispec", + "apispec>=1.0.0b1", "marshmallow", ]