diff options
author | David Cournapeau <cournape@gmail.com> | 2009-10-08 13:56:13 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-10-08 13:56:13 +0000 |
commit | 57030147c3faa6faffb67de01b255279ede185f0 (patch) | |
tree | ecd11694c2b53dfed6a1812da4f68f4240f08fee /numpy/core/setup_common.py | |
parent | 726fb0abae756d03d023e80d35e2c237fe4160af (diff) | |
download | numpy-57030147c3faa6faffb67de01b255279ede185f0.tar.gz |
ENH: use api dict instead of *order.txt files to check for API changes.
Diffstat (limited to 'numpy/core/setup_common.py')
-rw-r--r-- | numpy/core/setup_common.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/core/setup_common.py b/numpy/core/setup_common.py index ab801fc6d..0271a1c7c 100644 --- a/numpy/core/setup_common.py +++ b/numpy/core/setup_common.py @@ -53,7 +53,8 @@ def get_api_versions(apiversion, codegen_dir): sys.path.insert(0, codegen_dir) try: m = __import__('genapi') - curapi_hash = m.fullapi_hash(api_files) + numpy_api = __import__('numpy_api') + curapi_hash = m.fullapi_hash(numpy_api.full_api) apis_hash = m.get_versions_hash() finally: del sys.path[0] |