Skip to content

Commit

Permalink
dev: Updates to gitignore and installation instructions (#846)
Browse files Browse the repository at this point in the history
* Add environment section with `venv/` into gitignore file 
* Quoted `".[dev]"` in installation instructions to keep compatibility with zsh shell.
  • Loading branch information
ZhiYingSun committed Sep 24, 2022
1 parent e3d8e71 commit a7ec6ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,6 @@ tests/test_type_inference/png*

# Sphinx documentation build files
docs/_build

# Environments
venv/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If you're interested in using PyTA, you can install it using `pip` (or `pip3`, o
If you're developing PyTA:

1. First, clone this repository.
2. Open a terminal in this repo, and run `pip install -e .[dev]` to install the dependencies.
2. Open a terminal in this repo, and run `pip install -e ".[dev]"` to install the dependencies.
3. Then run `pre-commit install` to install the pre-commit hooks (for automatically formatting and checking your code on each commit).

While not strictly necessary for debugging, some debugging tools require [graphviz](https://www.graphviz.org/download/) to be installed on your system.
Expand Down

0 comments on commit a7ec6ae

Please sign in to comment.