From 279b97cbe60deade89b7f3336a16d1be8f0fe612 Mon Sep 17 00:00:00 2001 From: Matthew Wardrop Date: Mon, 11 Oct 2021 22:08:35 -0700 Subject: [PATCH] Migrate to using `main` as the primary branch. --- .github/workflows/publish_docs.yml | 4 ++-- README.md | 6 +++--- docs/changelog.md | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish_docs.yml b/.github/workflows/publish_docs.yml index f3d34fc..40d3ef4 100644 --- a/.github/workflows/publish_docs.yml +++ b/.github/workflows/publish_docs.yml @@ -3,14 +3,14 @@ name: Publish docs via GitHub Pages on: push: branches: - - master + - main jobs: build: name: Deploy docs runs-on: ubuntu-latest steps: - - name: Checkout master + - name: Checkout main uses: actions/checkout@v1 - name: Deploy docs diff --git a/README.md b/README.md index 35a6bd7..e960895 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# Formulaic +# Formulaic [![PyPI - Version](https://img.shields.io/pypi/v/formulaic.svg)](https://pypi.org/project/formulaic/) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/formulaic.svg) ![PyPI - Status](https://img.shields.io/pypi/status/formulaic.svg) [![build](https://img.shields.io/github/workflow/status/matthewwardrop/formulaic/Run%20Tox%20Tests)](https://github.com/matthewwardrop/formulaic/actions?query=workflow%3A%22Run+Tox+Tests%22) -[![codecov](https://codecov.io/gh/matthewwardrop/formulaic/branch/master/graph/badge.svg)](https://codecov.io/gh/matthewwardrop/formulaic) +[![codecov](https://codecov.io/gh/matthewwardrop/formulaic/branch/main/graph/badge.svg)](https://codecov.io/gh/matthewwardrop/formulaic) [![Code Style](https://img.shields.io/badge/code%20style-black-black)](https://github.com/psf/black) Formulaic is a high-performance implementation of Wilkinson formulas for Python. @@ -110,7 +110,7 @@ y, X = Formula('y ~ x + z').get_model_matrix(df) Formulaic typically outperforms R for both dense and sparse model matrices, and vastly outperforms `patsy` (the existing implementation for Python) for dense matrices (`patsy` does not support sparse model matrix output). -![Benchmarks](https://github.com/matthewwardrop/formulaic/raw/master/benchmarks/benchmarks.png) +![Benchmarks](https://github.com/matthewwardrop/formulaic/raw/main/benchmarks/benchmarks.png) For more details, see [here](benchmarks/README.md). diff --git a/docs/changelog.md b/docs/changelog.md index 0c25c47..ba23e06 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,4 +1,4 @@ -For the latest changes, please refer to the git log: https://github.com/matthewwardrop/formulaic/commits/master. +For the latest changes, please refer to the git log: https://github.com/matthewwardrop/formulaic/commits/main. ## 0.2.1 (22 January 2021)