Commit 858e6e0a authored by Roman Yurchak's avatar Roman Yurchak

Re-enable scipy.interpolate._interpolate

parent 56e8a176
commit 15e9f01458eec8cf9fc43de6646ee75cfa361859 commit 0da8a50bd566ee7810ed1888112cc9c9a1b27d9e
Author: Roman Yurchak <rth.yurchak@pm.me> Author: Roman Yurchak <rth.yurchak@pm.me>
Date: Wed Oct 10 14:12:22 2018 +0200 Date: Wed Oct 10 14:12:22 2018 +0200
Remove modules with global C++ namespace issue Remove modules with global C++ namespace issue
diff --git a/scipy/interpolate/setup.py b/scipy/interpolate/setup.py
index b42d3345c..2c8279403 100755
--- a/scipy/interpolate/setup.py
+++ b/scipy/interpolate/setup.py
@@ -35,10 +35,10 @@ def configuration(parent_package='',top_path=None):
depends=fitpack_src,
)
- config.add_extension('_interpolate',
- sources=['src/_interpolate.cpp'],
- include_dirs=['src'],
- depends=['src/interpolate.h'])
+ #config.add_extension('_interpolate',
+ # sources=['src/_interpolate.cpp'],
+ # include_dirs=['src'],
+ # depends=['src/interpolate.h'])
config.add_data_dir('tests')
diff --git a/scipy/sparse/setup.py b/scipy/sparse/setup.py diff --git a/scipy/sparse/setup.py b/scipy/sparse/setup.py
index ecf8ae5c6..27fd128c3 100755 index ecf8ae5c6..27fd128c3 100755
--- a/scipy/sparse/setup.py --- a/scipy/sparse/setup.py
......
...@@ -19,7 +19,7 @@ def test_scipy_import(selenium_standalone): ...@@ -19,7 +19,7 @@ def test_scipy_import(selenium_standalone):
""") """)
# supported modules # supported modules
for module in ['constants', 'fftpack']: for module in ['constants', 'fftpack', 'odr']:
selenium.run(f"import scipy.{module}") selenium.run(f"import scipy.{module}")
# not yet built modules # not yet built modules
...@@ -30,7 +30,6 @@ def test_scipy_import(selenium_standalone): ...@@ -30,7 +30,6 @@ def test_scipy_import(selenium_standalone):
'interpolate', # needs linalg 'interpolate', # needs linalg
'linalg', 'linalg',
'misc', # needs special 'misc', # needs special
'odrpack',
'signal', # needs special 'signal', # needs special
'ndimage', # needs special 'ndimage', # needs special
'stats', # need special 'stats', # need special
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment