Skip to content
Snippets Groups Projects
Commit 9bd62808 authored by David Verelst's avatar David Verelst
Browse files

fix typo/mistake extension include dirs prev commit

parent 9a732e4d
No related branches found
No related tags found
No related merge requests found
......@@ -23,8 +23,8 @@ def setup_package():
module = 'wetb.fatigue_tools.rainflowcounting'
names = ['pair_range', 'peak_trough', 'rainflowcount_astm']
extlist = [Extension('%s.%s' % (module, n),
include_dirs=[np.get_include()],
[os.path.join(path, n)+'.pyx']) for n in names]
[os.path.join(path, n)+'.pyx'],
include_dirs=[np.get_include()]) for n in names]
needs_sphinx = {'build_sphinx', 'upload_docs'}.intersection(sys.argv)
sphinx = ['sphinx'] if needs_sphinx else []
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment