Skip to content
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

Generate docstrings for sphinx without building the library #1740

Open
spflueger opened this issue Mar 25, 2019 · 6 comments
Open

Generate docstrings for sphinx without building the library #1740

spflueger opened this issue Mar 25, 2019 · 6 comments

Comments

@spflueger
Copy link

I should mention that this is more a question than an issue.

Issue description

I want to generate source code docs with sphinx for the pybind11 interface of a project. It works fine if I compile the whole project (since the pybind11 interface links to most of the project) and sphinx extracts the docs strings from the .so file. However I want to use readthedocs for automatic doc generation and don't want to build the whole project just for the documentation.

Is it possible to just generate the docstrings with pybind11, so that I can create my sphinx doc without compiling the project?

@molpopgen
Copy link

I don't think that this is possible, but it would be great if it were! IIUC, this is due to how Sphinx works.

RTD can be quite tricky for projects that need building. If you want an example, see here. It uses conda to install dependencies and then builds a pybind11-based project.

@spflueger
Copy link
Author

Ok. I guess I have to live with the building on RTD solution.

@am2222
Copy link

am2222 commented Jun 16, 2019

@spflueger Could you build your library on read the docs website?

@spflueger
Copy link
Author

I haven't tried it yet

@spflueger
Copy link
Author

I'm currently trying to build a dummy version of the pybind11 interface of my project. Dummy meaning without linking to all of the dependencies, which would make the building much easier. However then I get problems when python imports the shared library (undefined symbols exception). Does anyone have a idea how I can get around this?

@PsiXYZ
Copy link

PsiXYZ commented Nov 13, 2023

If this issue is still relevant:
At now RTD provides some new features to control your documentation generation

It's possible to compile any project before documentation building using jobs:

build:
  jobs:
    pre_build:
    - pip install .

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants