We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The webargs library is currently (sometimes) used in r-server and r-w-controller to parse HTTP requests. However, we are using different versions:
webargs
setup.py of r-w-controller:
setup.py
"webargs>=6.1.0,<7.0.0",
requirements.txt of r-server:
requirements.txt
reana-server/requirements.txt
Line 199 in 82b9689
These versions have some incompatible differences between them (see for example these changes).
We should:
invenio-rest
marshmallow
The text was updated successfully, but these errors were encountered:
Related issue in invenio-rest: inveniosoftware/invenio-rest#123
Sorry, something went wrong.
No branches or pull requests
The
webargs
library is currently (sometimes) used in r-server and r-w-controller to parse HTTP requests. However, we are using different versions:setup.py
of r-w-controller:"webargs>=6.1.0,<7.0.0",
requirements.txt
of r-server:reana-server/requirements.txt
Line 199 in 82b9689
These versions have some incompatible differences between them (see for example these changes).
We should:
webargs
in r-server to the same version of r-w-controller, given that it is also a dependency ofinvenio-rest
marshmallow
to version 3 (see Upgrade marshmallow library to version 3 reana-job-controller#352)The text was updated successfully, but these errors were encountered: