-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dump parameter was removed in apispec 0.20 #41
Comments
@lafrech Sounds reasonable. Are you sure this is still an issue with the current version on master?
|
Not sure which fork you're talking about. We don't use flask-apispec, we use our own framework (flask-rest-api, the one I link to). I think flask-apispec is broken if used with apispec 0.20.0. I contributed the change in apispec and it is a breaking change so I thought I'd stop by to tell you. My suggestion is you do the same as I did in the flask-rest-api commit I pointed to:
Just a friendly hint. None of my business, actually. |
Aww, right, my mistake, got confused by all the |
though raising the minimum requirement from apispec version >=0.4.1 (released 2015-10-20) to >=0.20.0 (released 2017-03-19) would be more problematic as it could break users code. It might be better to do some conditional code to support both versions. Thanks for opening this issue.. |
Nice catch @lafrech. I just ran into this bug too. |
I'm experiencing this bug too. |
It's not a bug, it's a breaking change upstream.. ) Should be fixed with #45 . |
Fixed. |
This line
flask-apispec/flask_apispec/apidoc.py
Line 70 in 2f8429c
should be removed since that parameter was removed in apispec 0.20.0: marshmallow-code/apispec@7009b17.
See the change I made in flask-rest-api: marshmallow-code/flask-smorest@4a239d5.
The text was updated successfully, but these errors were encountered: