I am working on several Jython projects using libraries written in Java. I would like to create good documentation with Sphinx thanks to the autodoc extension. However, when I try to create html, I get errors because autodoc cannot find libraries written in Java:
sphinx-build -b html -d _build/doctrees . _build/html Running Sphinx v1.0.5 loading pickled environment... done building [html]: targets for 1 source files that are out of date updating environment: 0 added, 1 changed, 0 removed reading sources... [100%] index /Users/myName/myJythonProject/doc/index.rst:14: (WARNING/2) autodoc can't import/find module 'myJythonProject', it reported error: "global name 'PoolManager' is not defined", please check your spelling and sys.path
where PoolManager is a Java class.
Can someone help me solve this problem?
Taurus Olson
source share