changeset 7416:302ce182ffd3

Replace build_temp with build_base Apprenty setuptools doesn't provide a build_temp like: temp.osver-pythonver so use self.build_base which exists in both distutils and setuptools.
author John Rouillard <rouilj@ieee.org>
date Thu, 25 May 2023 17:53:12 -0400
parents f636c3c5333e
children 6b332e3d7c43
files roundup/dist/command/build_doc.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/roundup/dist/command/build_doc.py	Thu May 25 17:16:46 2023 -0400
+++ b/roundup/dist/command/build_doc.py	Thu May 25 17:53:12 2023 -0400
@@ -51,6 +51,7 @@
             return
 
         doc_dir = os.path.join('share', 'doc', 'roundup', 'html')
-        temp_dir = os.path.join(self.build_temp, 'doc')
+        import pdb; pdb.set_trace()
+        temp_dir = os.path.join(self.build_base, 'temp.doc')
         cmd = sphinx + ['-d', temp_dir, 'doc', doc_dir]
         spawn(cmd)

Roundup Issue Tracker: http://roundup-tracker.org/