Skip to content

Commit

Permalink
updated default branch links
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcfee committed Jun 6, 2020
1 parent 2c73010 commit 2a475c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
Thanks for contributing a pull request! Please ensure you have taken a look at
the contribution guidelines: https://github.com/librosa/librosa/blob/master/CONTRIBUTING.md#how-to-contribute
the contribution guidelines: https://github.com/librosa/librosa/blob/main/CONTRIBUTING.md#how-to-contribute
-->
#### Reference Issue
<!-- Example: Fixes #123 -->
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ and install your local copy with testing dependencies:

$ git checkout -b my-feature

and start making changes. Never work in the ``master`` branch!
and start making changes. Never work in the ``main`` branch!

5. Work on this copy on your computer using Git to do the version
control. When you're done editing, do:
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ A python package for music and audio analysis.

[![PyPI](https://img.shields.io/pypi/v/librosa.svg)](https://pypi.python.org/pypi/librosa)
[![Anaconda-Server Badge](https://anaconda.org/conda-forge/librosa/badges/version.svg)](https://anaconda.org/conda-forge/librosa)
[![License](https://img.shields.io/pypi/l/librosa.svg)](https://github.com/librosa/librosa/blob/master/LICENSE.md)
[![License](https://img.shields.io/pypi/l/librosa.svg)](https://github.com/librosa/librosa/blob/main/LICENSE.md)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.591533.svg)](https://doi.org/10.5281/zenodo.591533)

[![Build Status](https://travis-ci.com/librosa/librosa.svg?branch=master)](https://travis-ci.com/librosa/librosa)
[![Build status](https://ci.appveyor.com/api/projects/status/63lxuac60tojq2vm/branch/master?svg=true)](https://ci.appveyor.com/project/librosa/librosa/branch/master)
[![Coverage Status](https://coveralls.io/repos/librosa/librosa/badge.svg?branch=master)](https://coveralls.io/r/librosa/librosa?branch=master)
[![Build Status](https://travis-ci.com/librosa/librosa.svg?branch=main)](https://travis-ci.com/librosa/librosa)
[![Build status](https://ci.appveyor.com/api/projects/status/63lxuac60tojq2vm/branch/main?svg=true)](https://ci.appveyor.com/project/librosa/librosa/branch/main)
[![Coverage Status](https://coveralls.io/repos/librosa/librosa/badge.svg?branch=main)](https://coveralls.io/r/librosa/librosa?branch=main)


Documentation
Expand All @@ -21,8 +21,8 @@ Demonstration notebooks
-----------------------
What does librosa do? Here are some quick demonstrations:

* [Introduction notebook](http://nbviewer.ipython.org/github/librosa/librosa/blob/master/examples/LibROSA%20demo.ipynb): a brief introduction to some commonly used features.
* [Decomposition and IPython integration](http://nbviewer.ipython.org/github/librosa/librosa/blob/master/examples/LibROSA%20audio%20effects%20and%20playback.ipynb): an intermediate demonstration, illustrating how to process and play back sound
* [Introduction notebook](http://nbviewer.ipython.org/github/librosa/librosa/blob/main/examples/LibROSA%20demo.ipynb): a brief introduction to some commonly used features.
* [Decomposition and IPython integration](http://nbviewer.ipython.org/github/librosa/librosa/blob/main/examples/LibROSA%20audio%20effects%20and%20playback.ipynb): an intermediate demonstration, illustrating how to process and play back sound


Installation
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@
# Sphinx-contrib versioning
# sphinx-versioning -l conf.py push docs gh-pages .
import re
scv_whitelist_branches = ('master',)
scv_whitelist_branches = ('main',)
#scv_whitelist_tags = (re.compile(r'^v?\d\.\d\.\d+(\.?rc\d+)?$'),) # use this for RC builds
scv_whitelist_tags = (re.compile(r'^v?\d\.\d\.\d+$'),) # use this for final builds
#scv_whitelist_tags = (re.compile(r'^v?\d\.\d\.\d+$'), re.compile(r'^0\.7\.0.*?')) # use this for final builds
Expand Down

0 comments on commit 2a475c8

Please sign in to comment.