diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f05e5211..9b91811b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,9 +2,9 @@ name: Lint on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] jobs: pre-commit-hooks: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c424361c..2a39eb2d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,9 +5,9 @@ name: Test on: push: - branches: [master] + branches: [main] pull_request: - branches: [master] + branches: [main] concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/README.md b/README.md index cf4a356e..17794bf6 100755 --- a/README.md +++ b/README.md @@ -5,13 +5,13 @@ _PyTorch Forecasting_ is a PyTorch-based package for forecasting with state-of-t | | **[Documentation](https://pytorch-forecasting.readthedocs.io)** · **[Tutorials](https://pytorch-forecasting.readthedocs.io/en/latest/tutorials.html)** · **[Release Notes](https://pytorch-forecasting.readthedocs.io/en/latest/CHANGELOG.html)** | |---|---| -| **Open Source** | [![MIT](https://img.shields.io/github/license/jdb78/pytorch-forecasting)](https://github.com/jdb78/pytorch-forecasting/blob/master/LICENSE) | +| **Open Source** | [![MIT](https://img.shields.io/github/license/jdb78/pytorch-forecasting)](https://github.com/jdb78/pytorch-forecasting/blob/main/LICENSE) | | **Community** | [![!discord](https://img.shields.io/static/v1?logo=discord&label=discord&message=chat&color=lightgreen)](https://discord.com/invite/54ACzaFsn7) [![!slack](https://img.shields.io/static/v1?logo=linkedin&label=LinkedIn&message=news&color=lightblue)](https://www.linkedin.com/company/scikit-time/) | | **CI/CD** | [![github-actions](https://img.shields.io/github/actions/workflow/status/jdb78/pytorch-forecasting/pypi_release.yml?logo=github)](https://github.com/jdb78/pytorch-forecasting/actions/workflows/pypi_release.yml) [![readthedocs](https://img.shields.io/readthedocs/pytorch-forecasting?logo=readthedocs)](https://pytorch-forecasting.readthedocs.io) [![platform](https://img.shields.io/conda/pn/conda-forge/pytorch-forecasting)](https://github.com/jdb78/pytorch-forecasting) [![Code Coverage][coverage-image]][coverage-url] | | **Code** | [![!pypi](https://img.shields.io/pypi/v/pytorch-forecasting?color=orange)](https://pypi.org/project/pytorch-forecasting/) [![!conda](https://img.shields.io/conda/vn/conda-forge/pytorch-forecasting)](https://anaconda.org/conda-forge/pytorch-forecasting) [![!python-versions](https://img.shields.io/pypi/pyversions/pytorch-forecasting)](https://www.python.org/) [![!black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black) | -[coverage-image]: https://codecov.io/gh/jdb78/pytorch-forecasting/branch/master/graph/badge.svg -[coverage-url]: https://codecov.io/github/jdb78/pytorch-forecasting?branch=master +[coverage-image]: https://codecov.io/gh/jdb78/pytorch-forecasting/branch/main/graph/badge.svg +[coverage-url]: https://codecov.io/github/jdb78/pytorch-forecasting?branch=main --- diff --git a/docs/source/conf.py b/docs/source/conf.py index 60128395..afce813c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -2,7 +2,7 @@ # # This file only contains a selection of the most common options. For a full # list see the documentation: -# https://www.sphinx-doc.org/en/master/usage/configuration.html +# https://www.sphinx-doc.org/en/main/usage/configuration.html # -- Path setup -------------------------------------------------------------- diff --git a/docs/source/tutorials.rst b/docs/source/tutorials.rst index d85a2c23..c8282719 100644 --- a/docs/source/tutorials.rst +++ b/docs/source/tutorials.rst @@ -3,7 +3,7 @@ Tutorials .. _tutorials: -The following tutorials can be also found as `notebooks on GitHub `_. +The following tutorials can be also found as `notebooks on GitHub `_. .. toctree:: :titlesonly: diff --git a/pytorch_forecasting/data/examples.py b/pytorch_forecasting/data/examples.py index 03ae566a..79b7cb52 100644 --- a/pytorch_forecasting/data/examples.py +++ b/pytorch_forecasting/data/examples.py @@ -8,7 +8,7 @@ import numpy as np import pandas as pd -BASE_URL = "https://github.com/jdb78/pytorch-forecasting/raw/master/examples/data/" +BASE_URL = "https://github.com/sktime/pytorch-forecasting/raw/main/examples/data/" DATA_PATH = Path(__file__).parent