Skip to content

Commit dda798f

Browse files
committed
Merge branch 'main' into s-cate
2 parents e327081 + a30b1da commit dda798f

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Thanks for contributing to DoubleML.
2-
Before submitting a PR, please take a look at our [contribution guidelines](https://github.com/DoubleML/doubleml-for-py/blob/master/CONTRIBUTING.md).
2+
Before submitting a PR, please take a look at our [contribution guidelines](https://github.com/DoubleML/doubleml-for-py/blob/main/CONTRIBUTING.md).
33
Additionally, please fill out the PR checklist below.
44

55
### Description
@@ -14,7 +14,7 @@ Here you can add further comments.
1414
You can also delete this section, if it is not necessary.
1515

1616
### PR Checklist
17-
Please fill out this PR checklist (see our [contributing guidelines](https://github.com/DoubleML/doubleml-for-py/blob/master/CONTRIBUTING.md#checklist-for-pull-requests-pr) for details).
17+
Please fill out this PR checklist (see our [contributing guidelines](https://github.com/DoubleML/doubleml-for-py/blob/main/CONTRIBUTING.md#checklist-for-pull-requests-pr) for details).
1818

1919
- [ ] The title of the pull request summarizes the changes made.
2020
- [ ] The PR contains a detailed description of all changes and additions.

.github/workflows/pytest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ name: build
55
on:
66
push:
77
branches:
8-
- master
8+
- main
99
pull_request:
1010
branches:
11-
- master
11+
- main
1212
schedule:
1313
- cron: "0 9 * * 1,3,5"
1414
workflow_dispatch:

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

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# DoubleML - Double Machine Learning in Python <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 - Double Machine Learning in Python <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
[![build](https://github.com/DoubleML/doubleml-for-py/workflows/build/badge.svg)](https://github.com/DoubleML/doubleml-for-py/actions?query=workflow%3Abuild)
44
[![PyPI version](https://badge.fury.io/py/DoubleML.svg)](https://badge.fury.io/py/DoubleML)
55
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/doubleml.svg)](https://anaconda.org/conda-forge/doubleml)
6-
[![codecov](https://codecov.io/gh/DoubleML/doubleml-for-py/branch/master/graph/badge.svg?token=0BjlFPgdGk)](https://codecov.io/gh/DoubleML/doubleml-for-py)
6+
[![codecov](https://codecov.io/gh/DoubleML/doubleml-for-py/branch/main/graph/badge.svg?token=0BjlFPgdGk)](https://codecov.io/gh/DoubleML/doubleml-for-py)
77
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/1c08ec7d782c451784293c996537de14)](https://www.codacy.com/gh/DoubleML/doubleml-for-py/dashboard?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=DoubleML/doubleml-for-py&amp;utm_campaign=Badge_Grade)
88
[![Python version](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9%20%7C%203.10-blue)](https://www.python.org/)
99

@@ -56,7 +56,7 @@ It further can be readily extended with regards to
5656
- ... alternative resampling schemes,
5757
- ...
5858

59-
![An overview of the OOP structure of the DoubleML package is given in the graphic available at https://github.com/DoubleML/doubleml-for-py/blob/master/doc/oop.svg](https://raw.githubusercontent.com/DoubleML/doubleml-for-py/master/doc/oop.svg)
59+
![An overview of the OOP structure of the DoubleML package is given in the graphic available at https://github.com/DoubleML/doubleml-for-py/blob/main/doc/oop.svg](https://raw.githubusercontent.com/DoubleML/doubleml-for-py/main/doc/oop.svg)
6060

6161
## Installation
6262

@@ -90,9 +90,9 @@ Detailed [installation instructions](https://docs.doubleml.org/stable/intro/inst
9090
DoubleML is a community effort.
9191
Everyone is welcome to contribute.
9292
To get started for your first contribution we recommend reading our
93-
[contributing guidelines](https://github.com/DoubleML/doubleml-for-py/blob/master/CONTRIBUTING.md)
93+
[contributing guidelines](https://github.com/DoubleML/doubleml-for-py/blob/main/CONTRIBUTING.md)
9494
and our
95-
[code of conduct](https://github.com/DoubleML/doubleml-for-py/blob/master/CODE_OF_CONDUCT.md).
95+
[code of conduct](https://github.com/DoubleML/doubleml-for-py/blob/main/CODE_OF_CONDUCT.md).
9696

9797
## Citation
9898

0 commit comments

Comments
 (0)