Skip to content

Commit 0c151ca

Browse files
committed
Replace master with main
1 parent bb57311 commit 0c151ca

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
# Link repository with GitHub Actions
22
# https://docs.github.com/en/actions/learn-github-actions/introduction-to-github-actions
33

4-
# Master branch only
54
name: run-tests
65
on:
76
push:
87
branches:
9-
- master
8+
- main
109
pull_request:
1110
branches:
12-
- master
11+
- main
1312

1413
# Set the language, install dependencies, and run the tests
1514
jobs:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# The WFDB Python Package
22

3-
![signals](https://raw.githubusercontent.com/MIT-LCP/wfdb-python/master/demo-img.png)
3+
![signals](https://raw.githubusercontent.com/MIT-LCP/wfdb-python/main/demo-img.png)
44

5-
[![tests workflow](https://github.com/MIT-LCP/wfdb-python/actions/workflows/run-tests.yml/badge.svg)](https://github.com/MIT-LCP/wfdb-python/actions?query=workflow%3Arun-tests+event%3Apush+branch%3Amaster)
5+
[![tests workflow](https://github.com/MIT-LCP/wfdb-python/actions/workflows/run-tests.yml/badge.svg)](https://github.com/MIT-LCP/wfdb-python/actions?query=workflow%3Arun-tests+event%3Apush+branch%3Amain)
66
[![PyPI Downloads](https://img.shields.io/pypi/dm/wfdb.svg?label=PyPI%20downloads)](https://pypi.org/project/wfdb/)
77
[![PhysioNet Project](https://img.shields.io/badge/DOI-10.13026%2Fegpf--2788-blue)](https://doi.org/10.13026/egpf-2788)
88
[![Supported Python Versions](https://img.shields.io/pypi/pyversions/wfdb.svg)](https://pypi.org/project/wfdb)
@@ -24,7 +24,7 @@ This package is heavily inspired by the original [WFDB Software Package](https:/
2424

2525
See the [documentation site](http://wfdb.readthedocs.io) for the public APIs.
2626

27-
See the [demo.ipynb](https://github.com/MIT-LCP/wfdb-python/blob/master/demo.ipynb) notebook file for example use cases.
27+
See the [demo.ipynb](https://github.com/MIT-LCP/wfdb-python/blob/main/demo.ipynb) notebook file for example use cases.
2828

2929
## Installation
3030

@@ -57,7 +57,7 @@ See the [note](#package-management) below about dev dependencies.
5757
We welcome community contributions in the form of pull requests. When contributing code, please ensure:
5858

5959
- Documentation is provided. New functions and classes should have numpy/scipy style [docstrings](https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt).
60-
- Unit tests are written for new features that are not covered by [existing tests](https://github.com/MIT-LCP/wfdb-python/tree/master/tests).
60+
- Unit tests are written for new features that are not covered by [existing tests](https://github.com/MIT-LCP/wfdb-python/tree/main/tests).
6161
- The code style is consistent with the project's formating standards.
6262

6363
Run the formatter with:

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,4 @@ Indices and tables
6666

6767
.. _PEP8: https://www.python.org/dev/peps/pep-0008/
6868
.. _docstrings: https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt
69-
.. _existing tests: https://github.com/MIT-LCP/wfdb-python/tree/master/tests
69+
.. _existing tests: https://github.com/MIT-LCP/wfdb-python/tree/main/tests

0 commit comments

Comments
 (0)