diff options
author | serge-sans-paille <serge.guelton@telecom-bretagne.eu> | 2022-02-01 22:37:53 +0100 |
---|---|---|
committer | serge-sans-paille <serge.guelton@telecom-bretagne.eu> | 2022-02-11 13:01:51 +0100 |
commit | 9ccf84d82c01842c01f983080b665b70376c54d7 (patch) | |
tree | c0d4f3c8dc70730346b64b951a196f40e42751a9 /numpy/core/setup.py | |
parent | a2d91e6f5b3b2e192ae741798844e306a7854e85 (diff) | |
download | numpy-9ccf84d82c01842c01f983080b665b70376c54d7.tar.gz |
Convert npy_partition.h.src to numpy/core/src/common/npy_partition.h
This patch is part of the conversion of templated code to C++ serie.
It reuses the taglist mechanism combined with variadic arguments to
automatically generates the C <> C++ boilerplate code.
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index c5465196f..f406c006f 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -954,7 +954,7 @@ def configuration(parent_package='',top_path=None): join('src', 'npysort', 'timsort.cpp'), join('src', 'npysort', 'heapsort.cpp'), join('src', 'npysort', 'radixsort.cpp'), - join('src', 'common', 'npy_partition.h.src'), + join('src', 'common', 'npy_partition.h'), join('src', 'npysort', 'selection.cpp'), join('src', 'common', 'npy_binsearch.h'), join('src', 'npysort', 'binsearch.cpp'), |