Skip to content

Commit

Permalink
Rename the master branch to the main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobunse committed Mar 21, 2022
1 parent bad4410 commit 7b9bdb5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: CI

# Run on master, tags, or any pull request
# Run on main, tags, or any pull request
on:
push:
branches: [master]
branches: [main]
tags: ["*"]
pull_request:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![](https://img.shields.io/badge/docs-dev-blue.svg)](https://mirkobunse.github.io/CriticalDifferenceDiagrams.jl/dev)
[![Build Status](https://github.com/mirkobunse/CriticalDifferenceDiagrams.jl/workflows/CI/badge.svg)](https://github.com/mirkobunse/CriticalDifferenceDiagrams.jl/actions)
[![codecov](https://codecov.io/gh/mirkobunse/CriticalDifferenceDiagrams.jl/branch/master/graph/badge.svg?token=LWBUWCH8OQ)](https://codecov.io/gh/mirkobunse/CriticalDifferenceDiagrams.jl)
[![codecov](https://codecov.io/gh/mirkobunse/CriticalDifferenceDiagrams.jl/branch/main/graph/badge.svg?token=LWBUWCH8OQ)](https://codecov.io/gh/mirkobunse/CriticalDifferenceDiagrams.jl)


# [Critical difference diagrams in Julia](https://mirkobunse.github.io/CriticalDifferenceDiagrams.jl/dev)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The example plot above is then generated with the following code:
using CriticalDifferenceDiagrams, CSV, DataFrames, Downloads, PGFPlots

# we generate the above example from the underlying data
url = "https://raw.githubusercontent.com/hfawaz/cd-diagram/master/example.csv"
url = "https://raw.githubusercontent.com/hfawaz/cd-diagram/main/example.csv"
df = CSV.read(Downloads.download(url), DataFrame)

plot = CriticalDifferenceDiagrams.plot(
Expand Down
2 changes: 1 addition & 1 deletion docs/src/python-wrapper.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import pandas as pd
from wget import download

# we generate the above example from the underlying data
download("https://raw.githubusercontent.com/hfawaz/cd-diagram/master/example.csv")
download("https://raw.githubusercontent.com/hfawaz/cd-diagram/main/example.csv")
df = pd.read_csv("example.csv")

plot = cdd.plot(
Expand Down
2 changes: 1 addition & 1 deletion test/readme.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@assert success(`lualatex -v`) # make sure the PDF and SVG export will work

@testset "README.jl example" begin
url = "https://raw.githubusercontent.com/hfawaz/cd-diagram/master/example.csv"
url = "https://raw.githubusercontent.com/hfawaz/cd-diagram/main/example.csv"
df = CSV.read(Downloads.download(url), DataFrame)

plot = CriticalDifferenceDiagrams.plot(
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using CriticalDifferenceDiagrams, CSV, DataFrames, Downloads, HypothesisTests, P
include("friedman.jl")

# download and read a test data set and remove the intermediate file
function _getdata(url="https://raw.githubusercontent.com/hfawaz/cd-diagram/master/example.csv")
function _getdata(url="https://raw.githubusercontent.com/hfawaz/cd-diagram/main/example.csv")
@info "Downloading $url"
testfile = Downloads.download(url)
df = CSV.read(testfile, DataFrame)
Expand Down

0 comments on commit 7b9bdb5

Please sign in to comment.