Update README/travis (#126)

* Update travis install to match README

* Fix README error

Placement of the -e is important, apparently
This commit is contained in:
Mark Mossberg
2017-04-10 17:22:02 -04:00
committed by GitHub
parent 5870211b1e
commit b02b551911
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ python:
install:
- travis_retry pip install -U pip
- travis_retry pip uninstall -y Manticore || echo "Manticore not cached" # uninstall any old, cached Manticore
- travis_retry pip install --no-binary capstone --no-binary keystone-engine .[dev] # cs/ks can have pip install issues (cs issues #445)
- travis_retry pip install --no-binary capstone --no-binary keystone-engine -e .[dev] # cs/ks can have pip install issues (cs issues #445)
- scripts/travis_install_z3.sh
script:
- scripts/travis_test.sh
+1 -1
View File
@@ -47,7 +47,7 @@ Then, install the Z3 Theorem Prover. Download the [latest release](https://githu
For a dev install that includes dependencies for tests, run:
```
pip install -e --no-binary capstone --no-binary keystone-engine .[dev]
pip install --no-binary capstone --no-binary keystone-engine -e .[dev]
```
You can run the tests with the commands below: