You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -32,13 +32,13 @@ Here's how to get started with your code contribution:
32
32
33
33
1. Create your own fork of redis-py
34
34
2. Do the changes in your fork
35
-
3.
36
-
*Create a virtualenv and install the development dependencies from the dev_requirements.txt file:*
37
-
38
-
a. python -m venv .venv
39
-
b. source .venv/bin/activate
40
-
c. pip install -r dev_requirements.txt
41
-
c. pip install -e .
35
+
3. Create a virtualenv and install the development dependencies from the dev_requirements.txt file:
36
+
```
37
+
python -m venv .venv
38
+
source .venv/bin/activate
39
+
pip install -r dev_requirements.txt
40
+
pip install -e .[jwt]
41
+
```
42
42
43
43
4. If you need a development environment, run `invoke devenv`. Note: this relies on docker-compose to build environments, and assumes that you have a version supporting [docker profiles](https://docs.docker.com/compose/profiles/).
44
44
5. While developing, make sure the tests pass by running `invoke tests`
0 commit comments