Skip to content

Commit

Permalink
Replace references to master branch (#2210)
Browse files Browse the repository at this point in the history
Commit history before merge:

* Replace references to master branch
* Update .flake8 to reference docs on RTD

  We're moving away from GitHub as a documentation host to only RTD because
  it's makes our lives easier creating good docs. I know this link is dead right now,
  but it won't be once we release a new version with the documentation reorganization
  changes (which should be soon!).

  Co-authored-by: Richard Si <63936253+ichard26@users.noreply.github.com>
  • Loading branch information
n0toose authored May 9, 2021
1 parent 5020577 commit 06ccb88
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[flake8]
extend-ignore = E203, E266, E501
# line length is intentionally set to 80 here because black uses Bugbear
# See https://github.com/psf/black/blob/master/docs/the_black_code_style.md#line-length for more details
# See https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html#line-length for more details
max-line-length = 80
max-complexity = 18
select = B,C,E,F,W,T4,B9
Expand Down
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ assignees: ""

**Environment (please complete the following information):**

- Version: \[e.g. master\]
- Version: \[e.g. main\]
- OS and Python version: \[e.g. Linux/Python 3.7.4rc1\]

**Does this bug also happen on master?** To answer this, you have two options:
**Does this bug also happen on main?** To answer this, you have two options:

1. Use the online formatter at <https://black.vercel.app/?version=master>, which will
use the latest master branch.
1. Use the online formatter at <https://black.vercel.app/?version=main>, which will use
the latest main branch.
1. Or run _Black_ on your machine:
- create a new virtualenv (make sure it's the same Python version);
- clone this repository;
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

### Documentation

- Replaced all remaining references to the
[`master`](https://github.com/psf/black/tree/main) branch with the
[`main`](https://github.com/psf/black/tree/main) branch. Some additional changes in
the source code were also made. (#2210)
- Sigificantly reorganized the documentation to make much more sense. Check them out by
heading over to [the stable docs on RTD](https://black.readthedocs.io/en/stable/).
(#2174)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
![Black Logo](https://raw.githubusercontent.com/psf/black/master/docs/_static/logo2-readme.png)
![Black Logo](https://raw.githubusercontent.com/psf/black/main/docs/_static/logo2-readme.png)

<h2 align="center">The Uncompromising Code Formatter</h2>

<p align="center">
<a href="https://github.com/psf/black/actions"><img alt="Actions Status" src="https://github.com/psf/black/workflows/Test/badge.svg"></a>
<a href="https://github.com/psf/black/actions"><img alt="Actions Status" src="https://github.com/psf/black/workflows/Primer/badge.svg"></a>
<a href="https://black.readthedocs.io/en/stable/?badge=stable"><img alt="Documentation Status" src="https://readthedocs.org/projects/black/badge/?version=stable"></a>
<a href="https://coveralls.io/github/psf/black?branch=master"><img alt="Coverage Status" src="https://coveralls.io/repos/github/psf/black/badge.svg?branch=master"></a>
<a href="https://github.com/psf/black/blob/master/LICENSE"><img alt="License: MIT" src="https://black.readthedocs.io/en/stable/_static/license.svg"></a>
<a href="https://coveralls.io/github/psf/black?branch=main"><img alt="Coverage Status" src="https://coveralls.io/repos/github/psf/black/badge.svg?branch=main"></a>
<a href="https://github.com/psf/black/blob/main/LICENSE"><img alt="License: MIT" src="https://black.readthedocs.io/en/stable/_static/license.svg"></a>
<a href="https://pypi.org/project/black/"><img alt="PyPI" src="https://img.shields.io/pypi/v/black"></a>
<a href="https://pepy.tech/project/black"><img alt="Downloads" src="https://pepy.tech/badge/black"></a>
<a href="https://anaconda.org/conda-forge/black/"><img alt="conda-forge" src="https://img.shields.io/conda/dn/conda-forge/black.svg?label=conda-forge"></a>
Expand Down
2 changes: 1 addition & 1 deletion docs/contributing/the_basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ $ sphinx-build -a -b html -W docs/ docs/_build/
if we get source code changes. It will error on formatting changes or errors. Please run
before pushing your PR to see if you get the actions you would expect from _Black_ with
your PR. You may need to change
[primer.json](https://github.com/psf/black/blob/master/src/black_primer/primer.json)
[primer.json](https://github.com/psf/black/blob/main/src/black_primer/primer.json)
configuration for it to pass.

For more `black-primer` information visit the
Expand Down
2 changes: 1 addition & 1 deletion docs/guides/using_black_with_other_tools.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tools out there.
tools, using **their** supported file formats.

Compatible configuration files can be
[found here](https://github.com/psf/black/blob/master/docs/compatible_configs/).
[found here](https://github.com/psf/black/blob/main/docs/compatible_configs/).

### isort

Expand Down
2 changes: 1 addition & 1 deletion docs/integrations/editors.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ automatically installs _Black_. You can upgrade it later by calling `:BlackUpgra
restarting Vim.

If you need to do anything special to make your virtualenv work and install _Black_ (for
example you want to run a version from master), create a virtualenv manually and point
example you want to run a version from main), create a virtualenv manually and point
`g:black_virtualenv` to it. The plugin will use it.

To run _Black_ on save, add the following line to `.vimrc` or `init.vim`:
Expand Down
8 changes: 4 additions & 4 deletions gallery/gallery.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def get_top_packages(days: Days) -> List[str]:
def get_package_source(package: str, version: Optional[str]) -> str:
if package == "cpython":
if version is None:
version = "master"
version = "main"
return f"https://github.com/python/cpython/archive/{version}.zip"
elif package == "pypy":
if version is None:
Expand Down Expand Up @@ -248,9 +248,9 @@ def format_repos(repos: Tuple[Path, ...], options: Namespace) -> None:
black_version=black_version,
input_directory=options.input,
)
git_switch_branch("master", repo=repo)
git_switch_branch("main", repo=repo)

git_switch_branch("master", repo=options.black_repo)
git_switch_branch("main", repo=options.black_repo)


def main() -> None:
Expand Down Expand Up @@ -296,7 +296,7 @@ def main() -> None:
type=Path,
help="Output directory to download and put result artifacts.",
)
parser.add_argument("versions", nargs="*", default=("master",), help="")
parser.add_argument("versions", nargs="*", default=("main",), help="")

options = parser.parse_args()
repos = init_repos(options)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def get_long_description() -> str:
author="Łukasz Langa",
author_email="lukasz@langa.pl",
url="https://github.com/psf/black",
project_urls={"Changelog": "https://github.com/psf/black/blob/master/CHANGES.md"},
project_urls={"Changelog": "https://github.com/psf/black/blob/main/CHANGES.md"},
license="MIT",
py_modules=["_black_version"],
ext_modules=ext_modules,
Expand Down

0 comments on commit 06ccb88

Please sign in to comment.