I am new to sphinx, but I find it truly awesome, Great piece of work ....
I have a basic question.. I have both Python 2.7 and Python 3.6 in my Windows 7 environmnt. I used *pip3 install* to have sphinx installed and it went through fine with the install, thus construing it as a Python 3 library. However make.bat failed when I invoked it with *make.bat html* I modified it to do the following and it works (of course I had to unset %SPHINXBUILD% before doing it). *I was able to get my documentation done.* if "%SPHINXBUILD%" == "" ( set SPHINXBUILD=py -3 -msphinx ) Question : Is the above acceptable as a fix or am I overlooking something here ? I could assume sphinx to support python 3 correct ? - VJN -- You received this message because you are subscribed to the Google Groups "sphinx-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sphinx-users. For more options, visit https://groups.google.com/d/optout.
