-
Notifications
You must be signed in to change notification settings - Fork 10
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
fix readthedocs build #16
Comments
Using the autoprocess directive makes building the docs on rtd more complicated, as we need to install the package dependencies. |
Currently I can't get this to work on ReadTheDocs. It is possible to setup a virtualenv on ReadTheDocs but I don't have the latest pywps on pypi. It will also fail if we include more then pure Python dependencies. @huard Is it possible to make the pywps sphinx extension like the sphinx autoapi? |
Well, I have no idea how static code parsers work. If it's just scraping the docstring, then no, it's not possible. If there is a fancy mechanism that understands subclasses, attributes, then yes, it might be possible. Also, there does not seem to be any hooks within the autoapi extension to write domain specific parsers, so we're talking about first making change to autoapi itself, then writing our own parser on top of it. Are you sure about the pure python dependencies ? If we require numpy, surely it can install it through pip. Can we fix this by clearly separating import dependencies and run dependencies (as in ansible)? Travis is able to import the code, could we get it to also build the docs and push them to githubio ? |
Fix #16: Fix readthedocs build for pywps sphinx extension.
@huard I got it working with having a separate I have moved the discussion to pywps: |
... it was using
requirements/rtd.txt
.The text was updated successfully, but these errors were encountered: