File tree Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Expand file tree Collapse file tree 1 file changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -79,27 +79,21 @@ $ git fetch upstream
79
79
$ git merge upstream/main
80
80
```
81
81
82
- 5 . Install the ** development dependencies** via
83
- ``` bash
84
- $ pip install -r requirements.txt
85
- $ pip install -r requirements-dev.txt
86
- ```
87
-
88
- 6 . ** Install DoubleML in editable mode** (more details can be found
82
+ 5 . ** Install DoubleML in editable mode** (more details can be found
89
83
[ here] ( https://docs.doubleml.org/stable/intro/install.html#python-building-the-package-from-source ) )
90
84
via
91
85
``` bash
92
- $ pip install --editable .
86
+ $ pip install --editable .[dev, rdd]
93
87
```
94
88
95
- 7 . ** Develop** your code changes. The changes can be added and pushed via
89
+ 6 . ** Develop** your code changes. The changes can be added and pushed via
96
90
``` bash
97
91
$ git add your_new_file your_modified_file
98
92
$ git commit -m " A commit message which briefly summarizes the changes made"
99
93
$ git push origin my_feature_branch
100
94
```
101
95
102
- 8 . Generate a ** pull request** from your fork.
96
+ 7 . Generate a ** pull request** from your fork.
103
97
Please follow our guidelines for pull requests.
104
98
When opening the PR you will be guided with a checklist.
105
99
You can’t perform that action at this time.
0 commit comments