projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b11f768
)
Fix demo setup.py.
author
Robert Bradshaw
<robertwb@math.washington.edu>
Tue, 16 Mar 2010 18:27:42 +0000
(11:27 -0700)
committer
Robert Bradshaw
<robertwb@math.washington.edu>
Tue, 16 Mar 2010 18:27:42 +0000
(11:27 -0700)
Demos/setup.py
patch
|
blob
|
history
diff --git
a/Demos/setup.py
b/Demos/setup.py
index c32949ae1952e721b4fea5fccd4866dc9b1a9a5e..60cbeb817a1bec070cdafdecae6c1c422e6c5c81 100644
(file)
--- a/
Demos/setup.py
+++ b/
Demos/setup.py
@@
-13,11
+13,10
@@
except:
ext_modules=[
Extension("primes", ["primes.pyx"]),
Extension("spam", ["spam.pyx"]),
- Extension("square", ["square.pyx"], language="c++"),
]
for file in glob.glob("*.pyx"):
- if file != "numeric_demo.pyx"
and file != "square.pyx"
:
+ if file != "numeric_demo.pyx":
ext_modules.append(Extension(file[:-4], [file], include_dirs = numpy_include_dirs))
setup(