forked from ethereum/py_ecc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update tox calls to use run, update all pip calls to use python -m (e…
- Loading branch information
Showing
4 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ Read more in the [documentation on ReadTheDocs](https://<RTD_NAME>.readthedocs.i | |
## Quickstart | ||
|
||
```sh | ||
pip install <PYPI_NAME> | ||
python -m pip install <PYPI_NAME> | ||
``` | ||
|
||
## Developer Setup | ||
|
@@ -36,7 +36,7 @@ git clone [email protected]:ethereum/<REPO_NAME>.git | |
cd <REPO_NAME> | ||
virtualenv -p python3 venv | ||
. venv/bin/activate | ||
pip install -e ".[dev]" | ||
python -m pip install -e ".[dev]" | ||
``` | ||
|
||
### Release setup | ||
|