remove precompiled pyx modules

This commit is contained in:
Thomas S Hatch 2011-08-26 22:50:42 -06:00
parent a2a431e2e2
commit 65f0c35855
2 changed files with 4 additions and 4 deletions

View file

@ -27,10 +27,10 @@ else:
setup(
name=NAME,
version=VER,
ext_modules=[
Extension('salt.modules.grains', ['salt/modules/grains.pyx']),
Extension('salt.modules.cytest', ['salt/modules/cytest.pyx']),
],
#ext_modules=[
# Extension('salt.modules.grains', ['salt/modules/grains.pyx']),
# Extension('salt.modules.cytest', ['salt/modules/cytest.pyx']),
# ],
cmdclass={
'build_ext': build_ext,
},