Skip to content

Commit

Permalink
ENH: Rename _sortmodule.c.src and move it into a new sorting directory.
Browse files Browse the repository at this point in the history
Fix the build to deal with the new name and location.
  • Loading branch information
charris committed Jun 17, 2011
1 parent 5cb956e commit f4ba3ed
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion numpy/core/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ nditer_src = env.GenerateFromTemplate(
lowlevel_strided_loops_src = env.GenerateFromTemplate(
pjoin('src', 'multiarray', 'lowlevel_strided_loops.c.src'))
einsum_src = env.GenerateFromTemplate(pjoin('src', 'multiarray', 'einsum.c.src'))
sortmodule_src = env.GenerateFromTemplate(pjoin('src', '_sortmodule.c.src'))
sortmodule_src = env.GenerateFromTemplate(pjoin('src', 'sorting','sortmodule.c.src'))
umathmodule_src = env.GenerateFromTemplate(pjoin('src', 'umath',
'umathmodule.c.src'))
umath_tests_src = env.GenerateFromTemplate(pjoin('src', 'umath',
Expand Down
2 changes: 1 addition & 1 deletion numpy/core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ def generate_umath_c(ext,build_dir):
config.add_data_dir('include/numpy/fenv')

config.add_extension('_sort',
sources=[join('src','_sortmodule.c.src'),
sources=[join('src','sorting','sortmodule.c.src'),
generate_config_h,
generate_numpyconfig_h,
generate_numpy_api,
Expand Down
File renamed without changes.

0 comments on commit f4ba3ed

Please sign in to comment.