summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2013-05-02 19:40:38 -0700
committerCharles Harris <charlesr.harris@gmail.com>2013-05-02 19:40:38 -0700
commit8fa264a98158f0c3c8a99061f64f954fc59094a4 (patch)
treec4d298333a826f45c4fbb9a7fcfe9e9a6abe3ab7 /numpy/core/setup.py
parent0330caed36ab77309f367c7b67c878452b7e5dd0 (diff)
parent6b0784b11f422f9148d01f01cfba09a5dcb0cd4a (diff)
downloadnumpy-8fa264a98158f0c3c8a99061f64f954fc59094a4.tar.gz
Merge pull request #2822 from ContinuumIO/custom_output_operand_fix
Fix for ufuncs with built in input operands and custom output operands
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r--numpy/core/setup.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index 0b2ecfe67..6df82b3fa 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -922,6 +922,13 @@ def configuration(parent_package='',top_path=None):
sources = [join('src','umath', 'umath_tests.c.src')])
#######################################################################
+ # custom rational dtype module #
+ #######################################################################
+
+ config.add_extension('test_rational',
+ sources = [join('src','umath', 'test_rational.c.src')])
+
+ #######################################################################
# multiarray_tests module #
#######################################################################