Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,12 @@ These will also run in a github workflow on each platform.

## Developer Environment

```bash
pip3 install virtualenvwrapper
source /usr/local/bin/virtualenvwrapper.sh
mkvirtualenv --python=`which python3` solc-select-dev
git clone https://github.com/crytic/solc-select.git
cd solc-select
python setup.py develop
```

Start a shell using the solc-select virutal environment by running:
Run `make dev` to create your own development environment.

```bash
workon solc-select-dev
git clone https://github.com/crytic/solc-select.git
cd solc-select
make dev
```

Update `solc-select` by running `git pull` from the `solc-select/` directory.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dev:
python3 -m venv env && source ./env/bin/activate
python3 -m pip install -e .