|
175 | 175 | two common reasons why `setup.py` might not be in the root:
|
176 | 176 |
|
177 | 177 | * 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`, |
180 | 180 | `setup.cfg`, and `tox.ini`. Projects like these produce multiple PyPI
|
181 | 181 | distributions (and upload multiple independently-installable tarballs).
|
182 | 182 | * 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):
|
609 | 609 | # refs/heads/ and refs/tags/ prefixes that would let us distinguish
|
610 | 610 | # between branches and tags. By ignoring refnames without digits, we
|
611 | 611 | # 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". |
613 | 613 | tags = set([r for r in refs if re.search(r'\d', r)])
|
614 | 614 | if verbose:
|
615 | 615 | print("discarding '%%s', no digits" %% ",".join(refs - tags))
|
@@ -1001,7 +1001,7 @@ def git_versions_from_keywords(keywords, tag_prefix, verbose):
|
1001 | 1001 | # refs/heads/ and refs/tags/ prefixes that would let us distinguish
|
1002 | 1002 | # between branches and tags. By ignoring refnames without digits, we
|
1003 | 1003 | # 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". |
1005 | 1005 | tags = set([r for r in refs if re.search(r'\d', r)])
|
1006 | 1006 | if verbose:
|
1007 | 1007 | print("discarding '%s', no digits" % ",".join(refs - tags))
|
|
0 commit comments