diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-03-22 20:15:39 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-04-09 20:54:51 (GMT) |
commit | 26b4d168832b27d89962c5faf9a2ed75b174abc8 (patch) | |
tree | 66960bc17fa0ca907aeebf863e3d5774afaa9dbb | |
parent | 8a4074083f20090e9092f67b888275d4c83763a2 (diff) | |
download | SCons-26b4d168832b27d89962c5faf9a2ed75b174abc8.zip SCons-26b4d168832b27d89962c5faf9a2ed75b174abc8.tar.gz SCons-26b4d168832b27d89962c5faf9a2ed75b174abc8.tar.bz2 |
Disable generating API docs for now epydoc is unmaintained and (?) not working with py3. Need to switch to sphinx(?)
-rw-r--r-- | doc/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/SConscript b/doc/SConscript index 8b22b3b..6a522d0 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -499,7 +499,7 @@ else: Local(css_file) if not skip_doc: - if not epydoc_cli and not epydoc: + if True: #not epydoc_cli and not epydoc: print("doc: epydoc not found, skipping building API documentation.") else: # XXX Should be in common with reading the same thing in |