Skip to content

Commit d856fe6

Browse files
committed
default branch was renamed from master to main
1 parent 00b83f4 commit d856fe6

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# DoubleML - Contributing Guidelines <a href="https://docs.doubleml.org"><img src="https://raw.githubusercontent.com/DoubleML/doubleml-for-py/master/doc/logo.png" align="right" width = "120" /></a>
1+
# DoubleML - Contributing Guidelines <a href="https://docs.doubleml.org"><img src="https://raw.githubusercontent.com/DoubleML/doubleml-for-py/main/doc/logo.png" align="right" width = "120" /></a>
22

33
DoubleML is a community effort.
44
Everyone is welcome to contribute.
55
All contributors should adhere to this contributing guidelines
6-
and our [code of conduct](https://github.com/DoubleML/doubleml-for-py/blob/master/CODE_OF_CONDUCT.md).
6+
and our [code of conduct](https://github.com/DoubleML/doubleml-for-py/blob/main/CODE_OF_CONDUCT.md).
77
The contributing guidelines are particularly helpful to get started for your first contribution.
88

99
## Submit a Bug Report :bug:
@@ -76,7 +76,7 @@ $ git remote add upstream https://github.com/DoubleML/doubleml-for-py.git
7676
This allows you to easily keep your repository in synch via
7777
```bash
7878
$ git fetch upstream
79-
$ git merge upstream/master
79+
$ git merge upstream/main
8080
```
8181

8282
5. Install the **development dependencies** via
@@ -112,7 +112,7 @@ When opening the PR you will be guided with a checklist.
112112
- [x] **References** to related issues or PRs are added.
113113

114114
- [x] The code passes **all (unit) tests** (see
115-
[below](https://github.com/DoubleML/doubleml-for-py/blob/master/CONTRIBUTING.md#unit-test-and-test-coverage)
115+
[below](https://github.com/DoubleML/doubleml-for-py/blob/main/CONTRIBUTING.md#unit-test-and-test-coverage)
116116
for details).
117117
To check, please run
118118
```bash
@@ -125,7 +125,7 @@ $ pytest .
125125
- [x] Check whether your changes adhere to the **PEP8 standards**.
126126
For the check you can use the following code
127127
```bash
128-
$ git diff upstream/master -u -- "*.py" | flake8 --diff --max-line-length=127
128+
$ git diff upstream/main -u -- "*.py" | flake8 --diff --max-line-length=127
129129
```
130130

131131
If your PR is still **work in progress**, please consider marking it a **draft PR**
@@ -160,7 +160,7 @@ new model class (e.g. regressions or classifications).
160160
Furthermore, the **score components for the Neyman orthogonal score function need to be implemented**.
161161
All other functionality is automatically available via inheritance from the abstract base class.
162162
A **template for new model classes** is available
163-
[here](https://github.com/DoubleML/doubleml-docs/blob/master/model_templates/double_ml_model_template.py).
163+
[here](https://github.com/DoubleML/doubleml-docs/blob/main/model_templates/double_ml_model_template.py).
164164

165165
## Contribute Documentation :books:
166166
The **documentation** of DoubleML is generated with **sphinx** and hosted at

0 commit comments

Comments
 (0)