summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Cousineau <eric.cousineau@tri.global>2019-01-30 12:19:57 -0500
committerEric Cousineau <eric.cousineau@tri.global>2019-01-30 12:31:03 -0500
commit84da6f3ef563f4dcf7180a39bb8bb824fc74aac9 (patch)
tree2b259f8fffed6fd569118da6f46d42a55105c09d
parentac1c5e579c840e20544e9d65dbcebc1ecd9bf796 (diff)
downloadpep8-84da6f3ef563f4dcf7180a39bb8bb824fc74aac9.tar.gz
CONTRIBUTING: Make virtualenv dir name consistent with gitignore
Update gitignore to be more flexible
-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::