projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
faf0574
)
install pyximport on Cython installation
author
Robert Bradshaw
<robertwb@math.washington.edu>
Sat, 16 Aug 2008 10:37:25 +0000
(
03:37
-0700)
committer
Robert Bradshaw
<robertwb@math.washington.edu>
Sat, 16 Aug 2008 10:37:25 +0000
(
03:37
-0700)
setup.py
patch
|
blob
|
history
diff --git
a/setup.py
b/setup.py
index 5a3c138aacdb9d251a5588297b04e3db927ec5d5..fa272c95cafbd3edd434dfb9d343bfffd62b5b98 100644
(file)
--- a/
setup.py
+++ b/
setup.py
@@
-101,3
+101,8
@@
setup(
**setup_args
)
+
+# Now install pyximport
+os.chdir('pyximport')
+os.spawnlp(os.P_WAIT, 'python', 'python', 'Setup.py', *sys.argv[1:])
+os.chdir('..')