Skip to content

Commit a2c2b5d

Browse files
committed
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.
1 parent 500a6b9 commit a2c2b5d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

roundup/dist/command/build_doc.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def run(self):
5151
return
5252

5353
doc_dir = os.path.join('share', 'doc', 'roundup', 'html')
54-
temp_dir = os.path.join(self.build_temp, 'doc')
54+
import pdb; pdb.set_trace()
55+
temp_dir = os.path.join(self.build_base, 'temp.doc')
5556
cmd = sphinx + ['-d', temp_dir, 'doc', doc_dir]
5657
spawn(cmd)

0 commit comments

Comments
 (0)