Skip to content

Commit

Permalink
Add sudo to pyEMS install command. Hopefully it can at least be _run_…
Browse files Browse the repository at this point in the history
… as a user...
  • Loading branch information
Jace A Mogill committed Sep 10, 2017
1 parent 96a2d59 commit 58b90db
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ build/Release/ems.node:
py: py2 py3

py3:
(cd Python; python3 ./setup.py build --build-temp=./ install)
(cd Python; sudo python3 ./setup.py build --build-temp=./ install)

py2:
(cd Python; python ./setup.py build --build-temp=./ install)
(cd Python; sudo python ./setup.py build --build-temp=./ install)

clean: clean_js clean_py3 clean_py2

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ EMS 1.3 introduces a C API.

EMS 1.4 Python API

EMS 1.4.7 **[This Release]** Improved examples and documentation
EMS 1.4.8 **[This Release]** Improved examples and documentation

EMS 1.5 **[Planned]** Memory allocator improvements (non-power 2 sizes, packed metadata, extensible heap),
low-level EMS diagnostic tools.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ems",
"version": "1.4.7",
"version": "1.4.8",
"author": "Synthetic Semantics <[email protected]>",
"description": "Persistent Shared Memory and Parallel Programming Model",
"contributors": [
Expand Down

0 comments on commit 58b90db

Please sign in to comment.