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
1 change: 0 additions & 1 deletion .python-base-version

This file was deleted.

1 change: 0 additions & 1 deletion .python-version

This file was deleted.

6 changes: 0 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
# Variables
CARGO := cargo

python_setup:
pyenv install -s $(shell cat .python-base-version)
pyenv virtualenv-delete -f $(shell cat .python-version) || true
pyenv virtualenv $(shell cat .python-base-version) $(shell cat .python-version)
pyenv version

python_project_setup:
pip install -r requirements.txt
pre-commit install --hook-type pre-commit --hook-type prepare-commit-msg --hook-type commit-msg
Expand Down
13 changes: 4 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,16 @@

### Python

We currently use python for pre-commit hooks. We herefore have a pyenv setup, after having pyenv and pyenv-virtualenv installed, simply run:

```
make python_setup
```

and
To run the basic python setup, run:

```
make python_project_setup
```

### Rust
This will install the required dependencies.
*It is recommended to do this in a virtual environment*.

This project requires rust, please follow the guidelines for installation.
### Rust

To run the basic rust setup, run:

Expand Down
Loading