@@ -49,9 +49,9 @@ You'll have to create a development environment using a Git checkout:
49
49
# Configure remotes such that you can pull changes from the googleapis/python-api-core
50
50
# repository into your local repository.
51
51
$ git remote add upstream [email protected] :googleapis/python-api-core.git
52
- # fetch and merge changes from upstream into master
52
+ # fetch and merge changes from upstream into main
53
53
$ git fetch upstream
54
- $ git merge upstream/master
54
+ $ git merge upstream/main
55
55
56
56
Now your local repo is set up such that you will push changes to your GitHub
57
57
repo, from which you can submit a pull request.
@@ -109,12 +109,12 @@ Coding Style
109
109
variables::
110
110
111
111
export GOOGLE_CLOUD_TESTING_REMOTE="upstream"
112
- export GOOGLE_CLOUD_TESTING_BRANCH="master "
112
+ export GOOGLE_CLOUD_TESTING_BRANCH="main "
113
113
114
114
By doing this, you are specifying the location of the most up-to-date
115
115
version of ``python-api-core ``. The the suggested remote name ``upstream ``
116
116
should point to the official ``googleapis `` checkout and the
117
- the branch should be the main branch on that remote (``master ``).
117
+ the branch should be the main branch on that remote (``main ``).
118
118
119
119
- This repository contains configuration for the
120
120
`pre-commit <https://pre-commit.com/ >`__ tool, which automates checking
@@ -185,7 +185,7 @@ The `description on PyPI`_ for the project comes directly from the
185
185
``README ``. Due to the reStructuredText (``rst ``) parser used by
186
186
PyPI, relative links which will work on GitHub (e.g. ``CONTRIBUTING.rst ``
187
187
instead of
188
- ``https://github.com/googleapis/python-api-core/blob/master /CONTRIBUTING.rst ``)
188
+ ``https://github.com/googleapis/python-api-core/blob/main /CONTRIBUTING.rst ``)
189
189
may cause problems creating links or rendering the description.
190
190
191
191
.. _description on PyPI : https://pypi.org/project/google-api-core
@@ -210,7 +210,7 @@ We support:
210
210
211
211
Supported versions can be found in our ``noxfile.py `` `config `_.
212
212
213
- .. _config : https://github.com/googleapis/python-api-core/blob/master /noxfile.py
213
+ .. _config : https://github.com/googleapis/python-api-core/blob/main /noxfile.py
214
214
215
215
216
216
We also explicitly decided to support Python 3 beginning with version 3.6.
0 commit comments