Re: [sphinx-users] Connected function not being called in apidoc.

2021-01-20 Thread Joshua J. Kugler
For some reason, it either wasn't seeing the environment variable I was setting, or there was a problem with cached docs. Thank you for your time, and sorry for the noise. j -- Joshua J. Kugler - Fairbanks, Alaska - jos...@azariah.com Azariah Enterprises - Programming and Website Desig

Re: [sphinx-users] Connected function not being called in apidoc.

2021-01-20 Thread Joshua J. Kugler
loaded from the command. > > Thanks, > Takeshi KOMIIYA > > 2021年1月20日(水) 11:31 Joshua J. Kugler : > > I was invoking sphinx-apidoc from the command line, and all was working. > > > > We modified our build system and now sphinx is being called from a python > >

[sphinx-users] Connected function not being called in apidoc.

2021-01-19 Thread Joshua J. Kugler
t call setup() in conf.py, as evidenced by a print statement I put in there. sphinx-build does call setup.py when called in a similar manner. What is the best way to debug why setup.py isn't being called by sphinx- apidoc? j -- Joshua J. Kugler - Fairbanks, Alaska - jos...@azariah.co

Re: [sphinx-users] Trying to exclude files not working

2020-10-16 Thread Joshua J. Kugler
k we can safely consider it a bug. Thank you for filing an issue, > Joshua. > > Matt > https://techwriter.documatt.com > > On Sat, Sep 12, 2020 at 12:17 AM Joshua J. Kugler > > wrote: > > I could try that, but the directory isn't at ../test_files. sphinx uses

Re: [sphinx-users] Sphinx not highlighting code it should

2020-09-14 Thread Joshua J. Kugler
contains syntax error, you need to pass `:force:` option to the > code-block directive. > > Thanks, > Takeshi KOMIYA > > 2020年9月12日(土) 7:31 Joshua J. Kugler : > > In my document, I have various bits of code like this: > > > > ``` > > # code > > ```

[sphinx-users] Sphinx not highlighting code it should

2020-09-11 Thread Joshua J. Kugler
et this warning from sphinx: /home/jkugler/repos/frb/devkit-python/docs/installing-devkit.md: WARNING: Could not lex literal_block as "powershell". Highlighting skipped. I uninstalled python3-pygments as a test, and sphinx would not run without it, so I know that's the one it

Re: [sphinx-users] Trying to exclude files not working

2020-09-11 Thread Joshua J. Kugler
TH starts with "..". How about prepending ".." > to the exclude paths? > > sphinx-apidoc -f -e -M --implicit-namespaces -o ./modules ../devkit/ > '../test_files/*' > > Thanks, > Takeshi KOMIYA > > 2020年8月18日(火) 9:41 Joshua J. Kugle

Re: [sphinx-users] Trying to exclude files not working

2020-08-31 Thread Joshua J. Kugler
Any solution for this? Shall I open a bug? j On Monday, August 24, 2020 2:50:10 PM AKDT Joshua J. Kugler wrote: > Nope, still haven't fixed it. On the back burner for now, but would be nice > to figure out why. > > j > > On Friday, August 21, 2020 4:12:46 AM AKDT M

Re: [sphinx-users] Trying to exclude files not working

2020-08-31 Thread Joshua J. Kugler
Any solution for this? Shall I open a bug? j On Monday, August 24, 2020 2:50:10 PM AKDT Joshua J. Kugler wrote: > Nope, still haven't fixed it. On the back burner for now, but would be nice > to figure out why. > > j > > On Friday, August 21, 2020 4:12:46 AM AKDT M

Re: [sphinx-users] Trying to exclude files not working

2020-08-24 Thread Joshua J. Kugler
t;> from fnmatch import fnmatch > >>> fnmatch("devkit/tests/test_files/foo_test.py", "*test_files*") > > True > > Matt > https://blog.documatt.com > > On Tue, Aug 18, 2020 at 2:41 AM Joshua J. Kugler wrote: > > sphinx-apidoc says: > >

[sphinx-users] Trying to exclude files not working

2020-08-17 Thread Joshua J. Kugler
be creating for python files in the test_files tree. What am I doing wrong? Thanks! j -- Joshua J. Kugler - Fairbanks, Alaska - jos...@azariah.com Azariah Enterprises - Programming and Website Design PGP Key: http://pgp.mit.edu/ ID 0x68108cbb73b13b6a -- You received this message because

[sphinx-users] 3.2.0 in PyPi, 4.0.0 docs

2020-08-13 Thread Joshua J. Kugler
According to PyPi the latest version of Sphinx is 3.2.0, but https:// www.sphinx-doc.org/en/master/contents.html (And all docs) say the docs are for 4.0.0+. How does one acquire 4.0.0? Why were the docs released before the code? :) -- Joshua J. Kugler - Fairbanks, Alaska - jos...@azariah.com

Re: [sphinx-users] autodoc-skip-member isn't seeing all functions?

2020-08-13 Thread Joshua J. Kugler
On Thursday, August 13, 2020 7:28:49 AM AKDT Komiya Takeshi wrote: > Hi Joshua, > > Thank you for reporting. I believe it should be improved. Could you > file an issue to GitHub, please? > Then I'll work on it. Thanks, done! https://github.com/sphinx-doc/sphinx/issues/8

Re: [sphinx-users] autodoc-skip-member isn't seeing all functions?

2020-08-11 Thread Joshua J. Kugler
g it. So, I figured this out. The file concerned had an __all__ statement. So, on one hand, I understand the reason it was being excluded, but on the other hand, why does __all__ prevent passing the identifiers the autodoc-skip-member function? That said, this is probably doc'ed s