8000 doc: Use .venv (not .env) as a virtual env location in CONTRIBUTING.m… · Tarty/sentry-python@55b2902 · GitHub
[go: up one dir, main page]

Skip to content

Commit 55b2902

Browse files
authored
doc: Use .venv (not .env) as a virtual env location in CONTRIBUTING.md (getsentry#1790)
1 parent e2e0de1 commit 55b2902

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Make sure that you have Python 3 installed. Version 3.7 or higher is required to
3434
```bash
3535
cd sentry-python
3636

37-
python -m venv .env
37+
python -m venv .venv
3838

39-
source .env/bin/activate
39+
source .venv/bin/activate
4040
```
4141

4242
### Install `sentry-python` in editable mode
@@ -88,10 +88,10 @@ specific tests:
8888
cd sentry-python
8989

9090
# create virtual environment
91-
python -m venv .env
91+
python -m venv .venv
9292

9393
# activate virtual environment
94-
source .env/bin/activate
94+
source .venv/bin/activate
9595

9696
# install sentry-python
9797
pip install -e .

0 commit comments

Comments
 (0)
0