Closed
Description
Expected behavior and actual behavior
CMake should build the docs regardless of the python version. It currently fails when the python version is >=3.0.
Steps to reproduce the problem
cd build/
cmake -DWITH_DOC=ON ..
make doc
Proposed Fix
The error happens at this line:
https://github.com/pgRouting/pgrouting/blob/master/cmake/FindSphinx.cmake#L55
it can be fixed by modifying the python statement to
from __future__ import print_function; import sphinx; print(sphinx.__version__)