forked from scipy/scipy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'pr/515' into merge-515
Conflicts: scipy/io/wavfile.py scipy/lib/blas/setup.py scipy/optimize/tests/test_optimize.py scipy/sparse/compressed.py scipy/sparse/tests/test_base.py scipy/stats/tests/test_fit.py
- Loading branch information
Showing
381 changed files
with
4,745 additions
and
2,848 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,31 +10,32 @@ | |
else: | ||
DEFINE_MACROS = [] | ||
|
||
def configuration(parent_package = '', top_path = None): | ||
|
||
def configuration(parent_package='', top_path=None): | ||
from numpy.distutils.misc_util import Configuration, get_numpy_include_dirs | ||
config = Configuration('cluster', parent_package, top_path) | ||
|
||
config.add_data_dir('tests') | ||
|
||
config.add_extension('_vq', | ||
sources=[join('src', 'vq_module.c'), join('src', 'vq.c')], | ||
include_dirs = [get_numpy_include_dirs()], | ||
include_dirs=[get_numpy_include_dirs()], | ||
define_macros=DEFINE_MACROS) | ||
|
||
config.add_extension('_hierarchy_wrap', | ||
sources=[join('src', 'hierarchy_wrap.c'), join('src', 'hierarchy.c')], | ||
include_dirs = [get_numpy_include_dirs()], | ||
include_dirs=[get_numpy_include_dirs()], | ||
define_macros=DEFINE_MACROS) | ||
|
||
return config | ||
|
||
if __name__ == '__main__': | ||
from numpy.distutils.core import setup | ||
setup(maintainer = "SciPy Developers", | ||
author = "Eric Jones", | ||
maintainer_email = "[email protected]", | ||
description = "Clustering Algorithms (Information Theory)", | ||
url = "http://www.scipy.org", | ||
license = "SciPy License (BSD Style)", | ||
setup(maintainer="SciPy Developers", | ||
author="Eric Jones", | ||
maintainer_email="[email protected]", | ||
description="Clustering Algorithms (Information Theory)", | ||
url="http://www.scipy.org", | ||
license="SciPy License (BSD Style)", | ||
**configuration(top_path='').todict() | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ | |
|
||
from os.path import join | ||
|
||
def configuration(parent_package = '', top_path = None): | ||
|
||
def configuration(parent_package='', top_path=None): | ||
from numpy.distutils.misc_util import Configuration, get_numpy_include_dirs | ||
config = Configuration('cluster', parent_package, top_path) | ||
|
||
|
@@ -18,11 +19,11 @@ def configuration(parent_package = '', top_path = None): | |
|
||
if __name__ == '__main__': | ||
from numpy.distutils.core import setup | ||
setup(maintainer = "SciPy Developers", | ||
author = "Eric Jones", | ||
maintainer_email = "[email protected]", | ||
description = "Clustering Algorithms (Information Theory)", | ||
url = "http://www.scipy.org", | ||
license = "SciPy License (BSD Style)", | ||
setup(maintainer="SciPy Developers", | ||
author="Eric Jones", | ||
maintainer_email="[email protected]", | ||
description="Clustering Algorithms (Information Theory)", | ||
url="http://www.scipy.org", | ||
license="SciPy License (BSD Style)", | ||
**configuration(top_path='').todict() | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.