Skip to content

Commit

Permalink
Migrate to using main as the primary branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewwardrop committed Oct 12, 2021
1 parent 89f2493 commit 279b97c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# <img src="https://raw.githubusercontent.com/matthewwardrop/formulaic/master/docs/assets/images/logo_with_text.png" alt="Formulaic" height=100/>
# <img src="https://raw.githubusercontent.com/matthewwardrop/formulaic/main/docs/assets/images/logo_with_text.png" alt="Formulaic" height=100/>

[![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.
Expand Down Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down

0 comments on commit 279b97c

Please sign in to comment.