Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Commit

Permalink
bcolz_ext.pyx -> carray.pyx
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesc Alted committed Jul 14, 2014
1 parent 60dcdfc commit 0224153
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion pavement.py
Expand Up @@ -219,7 +219,7 @@ def pdf(options):
# .gz" % (VERSION, VERSION),
platforms=['any'],
ext_modules=[
Extension("bcolz.bcolz_ext",
Extension("bcolz.carray",
include_dirs=inc_dirs,
sources=cython_cfiles + blosc_files,
depends=["bcolz/definitions.pxd"] + blosc_files,
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -139,7 +139,7 @@ def check_import(pkgname, pkgver):
lib_dirs = []
libs = []
def_macros = []
sources = ["bcolz/bcolz_ext.pyx"]
sources = ["bcolz/carray.pyx"]

# Include NumPy header dirs
from numpy.distutils.misc_util import get_numpy_include_dirs
Expand Down Expand Up @@ -221,7 +221,7 @@ def check_import(pkgname, pkgver):
platforms=['any'],
cmdclass={'build_ext': build_ext},
ext_modules=[
Extension("bcolz.bcolz_ext",
Extension("bcolz.carray",
include_dirs=inc_dirs,
define_macros=def_macros,
sources=sources,
Expand Down

0 comments on commit 0224153

Please sign in to comment.