Skip to content

Commit 37792e0

Browse files
authored
rename master to main (#112)
1 parent 1a7dd94 commit 37792e0

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.github/workflows/build-and-test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: build and test
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [ main ]
66
pull_request:
7-
branches: [ master ]
7+
branches: [ main ]
88

99
jobs:
1010
build:

.github/workflows/docs-build-and-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Docs build and deploy
22
on:
33
push:
44
branches:
5-
- master
5+
- main
66
jobs:
77
build-and-deploy:
88
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.

docs/developer.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Build docs locally (you can then see the generated documentation in ``docs/_buil
2626

2727
make docs
2828

29-
Docs are automatically deployed to github pages via a workflow on push to the master branch.
29+
Docs are automatically deployed to github pages via a workflow on push to the main branch.
3030

3131
Todo list
3232
=========

gctree/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ def git_versions_from_keywords(keywords, tag_prefix, verbose):
199199
# refs/heads/ and refs/tags/ prefixes that would let us distinguish
200200
# between branches and tags. By ignoring refnames without digits, we
201201
# filter out many common branch names like "release" and
202-
# "stabilization", as well as "HEAD" and "master".
202+
# "stabilization", as well as "HEAD" and "main".
203203
tags = set([r for r in refs if re.search(r"\d", r)])
204204
if verbose:
205205
print("discarding '%s', no digits" % ",".join(refs - tags))

versioneer.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@
175175
two common reasons why `setup.py` might not be in the root:
176176
177177
* Source trees which contain multiple subprojects, such as
178-
[Buildbot](https://github.com/buildbot/buildbot), which contains both
179-
"master" and "slave" subprojects, each with their own `setup.py`,
178+
[Buildbot](https://github.com/buildbot/buildbot), which contains
179+
multiple subprojects, each with their own `setup.py`,
180180
`setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI
181181
distributions (and upload multiple independently-installable tarballs).
182182
* Source trees whose main purpose is to contain a C library, but which also
@@ -609,7 +609,7 @@ def git_versions_from_keywords(keywords, tag_prefix, verbose):
609609
# refs/heads/ and refs/tags/ prefixes that would let us distinguish
610610
# between branches and tags. By ignoring refnames without digits, we
611611
# filter out many common branch names like "release" and
612-
# "stabilization", as well as "HEAD" and "master".
612+
# "stabilization", as well as "HEAD" and "main".
613613
tags = set([r for r in refs if re.search(r'\d', r)])
614614
if verbose:
615615
print("discarding '%%s', no digits" %% ",".join(refs - tags))
@@ -1001,7 +1001,7 @@ def git_versions_from_keywords(keywords, tag_prefix, verbose):
10011001
# refs/heads/ and refs/tags/ prefixes that would let us distinguish
10021002
# between branches and tags. By ignoring refnames without digits, we
10031003
# filter out many common branch names like "release" and
1004-
# "stabilization", as well as "HEAD" and "master".
1004+
# "stabilization", as well as "HEAD" and "main".
10051005
tags = set([r for r in refs if re.search(r'\d', r)])
10061006
if verbose:
10071007
print("discarding '%s', no digits" % ",".join(refs - tags))

0 commit comments

Comments
 (0)