summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2020-02-19 13:43:46 -0800
committerGitHub <noreply@github.com>2020-02-19 13:43:46 -0800
commit68cc24fbe60ce31e2f9b40dc6dd484b2abf3a705 (patch)
treebc3672cd1dd932441cc307024c75d791624ccb87
parent2796890df300c4b12b07e6594ec864afe48d26fc (diff)
parent84da6f3ef563f4dcf7180a39bb8bb824fc74aac9 (diff)
downloadpep8-68cc24fbe60ce31e2f9b40dc6dd484b2abf3a705.tar.gz
Merge pull request #835 from EricCousineau-TRI/feature/venv_doc_consistency
CONTRIBUTING: Make virtualenv dir name consistent with gitignore
-rw-r--r--.gitignore2
-rw-r--r--CONTRIBUTING.rst6
2 files changed, 5 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 7cd7441..2a40a53 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,4 +5,4 @@
dist
docs/_build
build/
-venv/
+/venv*/
diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst
index 3361c46..4cdd213 100644
--- a/CONTRIBUTING.rst
+++ b/CONTRIBUTING.rst
@@ -34,8 +34,10 @@ Next, ``cd`` to the pycodestyle repository that you cloned earlier and
create, then activate a virtualenv::
$ cd pycodestyle
- $ virtualenv pycodestyle-venv
- $ source pycodestyle-venv/bin/activate
+ $ virtualenv venv-pycodestyle
+ $ source venv-pycodestyle/bin/activate
+
+Note that ``venv*/`` is ignored via ``.gitignore``.
Now you can install the pycodestyle requirements::