-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Pythonic build: Switch from cmake to distutils extensions for nupic installation #1579
Changes from all commits
d65b141
fb18ade
253b8f0
bdc48b2
0f8482f
adc9763
c9b7555
854966b
49de2b1
daa4841
320603b
43be75a
0f279e1
53de635
e66635c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ python --version | |
|
||
# Build NuPIC | ||
cd ${TRAVIS_BUILD_DIR} | ||
python setup.py install --user | ||
ARCHFLAGS="-arch x86_64" python setup.py install --user | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If this is still required for OS X builds, we'll need to add this to the README until we figure out how automate it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I had added the instruction but it seems that it got lost in some place.. :-/ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe this is separate from this PR but I don't set this env variable and have no problem on OS X. Why do we think it is necessary? |
||
|
||
# Show nupic installation folder by trying to import nupic, if works, it prints | ||
# the absolute path of nupic.__file__, which the installation folder itself. | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build_ext] | ||
inplace=1 | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what is
~nupic
? I'm not convinced that I want this hidden from me if it gets createdThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
~
=not
, so these lines mean ignoring all files innupic/bindings/
, except*.i
files.