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

Commit

Permalink
Removes fake C extension from setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
rhyolight committed Jan 22, 2015
1 parent 19c1177 commit 2f38d0a
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions setup.py
Expand Up @@ -360,22 +360,6 @@ def getExtensionModules(nupicCoreReleaseDir, platform, bitness):

extensions = []

# This meant to fake out wheel to produce platform-specific .whl files.
# Without this, wheel assumes the binary file will be platform-independent,
# and we don't want that.
fakeExtension = Extension(
"fake-extension",
swig_opts=[],
extra_compile_args=[],
define_macros=[],
extra_link_args=[],
include_dirs=[],
libraries=[],
sources=[],
extra_objects=[]
)
extensions.append(fakeExtension)

libDynamicCppRegion = Extension(
"nupic." + getLibPrefix(platform) + "cpp_region",
extra_compile_args=commonCompileFlags,
Expand Down

0 comments on commit 2f38d0a

Please sign in to comment.