@@ -22,7 +22,7 @@ In order to add a feature:
2222 documentation.
2323
2424- The feature must work fully on the following CPython versions:
25- 3.7, 3.8, 3.9, 3.10 and 3.11 on both UNIX and Windows.
25+ 3.7, 3.8, 3.9, 3.10, 3.11 and 3.12 on both UNIX and Windows.
2626
2727- The feature must not add unnecessary dependencies (where
2828 "unnecessary" is of course subjective, but new dependencies should
@@ -35,21 +35,21 @@ Using a Development Checkout
3535You'll have to create a development environment using a Git checkout:
3636
3737- While logged into your GitHub account, navigate to the
38- ``python -cloud-common `` `repo `_ on GitHub.
38+ ``google -cloud-python `` `repo `_ on GitHub.
3939
40- - Fork and clone the ``python -cloud-common `` repository to your GitHub account by
40+ - Fork and clone the ``google -cloud-python `` repository to your GitHub account by
4141 clicking the "Fork" button.
4242
43- - Clone your fork of ``python -cloud-common `` from your GitHub account to your local
43+ - Clone your fork of ``google -cloud-python `` from your GitHub account to your local
4444 computer, substituting your account username and specifying the destination
45- as ``hack-on-python -cloud-common ``. E.g.::
45+ as ``hack-on-google -cloud-python ``. E.g.::
4646
4747 $ cd ${HOME}
48- $ git clone git@github.com:USERNAME/python -cloud-common .git hack-on-python -cloud-common
49- $ cd hack-on-python -cloud-common
50- # Configure remotes such that you can pull changes from the googleapis/python -cloud-common
48+ $ git clone git@github.com:USERNAME/google -cloud-python .git hack-on-google -cloud-python
49+ $ cd hack-on-google -cloud-python
50+ # Configure remotes such that you can pull changes from the googleapis/google -cloud-python
5151 # repository into your local repository.
52- $ git remote add upstream git@github.com:googleapis/python -cloud-common .git
52+ $ git remote add upstream git@github.com:googleapis/google -cloud-python .git
5353 # fetch and merge changes from upstream into main
5454 $ git fetch upstream
5555 $ git merge upstream/main
@@ -60,7 +60,7 @@ repo, from which you can submit a pull request.
6060To work on the codebase and run the tests, we recommend using ``nox ``,
6161but you can also use a ``virtualenv `` of your own creation.
6262
63- .. _repo : https://github.com/googleapis/python -cloud-common
63+ .. _repo : https://github.com/googleapis/google -cloud-python
6464
6565Using ``nox ``
6666=============
@@ -72,7 +72,7 @@ We use `nox <https://nox.readthedocs.io/en/latest/>`__ to instrument our tests.
7272
7373- To run a single unit test::
7474
75- $ nox -s unit-3.11 -- -k <name of test>
75+ $ nox -s unit-3.12 -- -k <name of test>
7676
7777
7878 .. note::
@@ -113,7 +113,7 @@ Coding Style
113113 export GOOGLE_CLOUD_TESTING_BRANCH="main"
114114
115115 By doing this, you are specifying the location of the most up-to-date
116- version of ``python -cloud-common ``. The
116+ version of ``google -cloud-python ``. The
117117 remote name ``upstream `` should point to the official ``googleapis ``
118118 checkout and the branch should be the default branch on that remote (``main ``).
119119
@@ -143,12 +143,12 @@ Running System Tests
143143 $ nox -s system
144144
145145 # Run a single system test
146- $ nox -s system-3.11 -- -k <name of test>
146+ $ nox -s system-3.12 -- -k <name of test>
147147
148148
149149 .. note::
150150
151- System tests are only configured to run under Python 3.8, 3.9, 3.10 and 3.11 .
151+ System tests are only configured to run under Python 3.8, 3.9, 3.10, 3.11 and 3.12 .
152152 For expediency, we do not run them in older versions of Python 3.
153153
154154 This alone will not run the tests. You'll need to change some local
@@ -209,7 +209,7 @@ The `description on PyPI`_ for the project comes directly from the
209209``README ``. Due to the reStructuredText (``rst ``) parser used by
210210PyPI, relative links which will work on GitHub (e.g. ``CONTRIBUTING.rst ``
211211instead of
212- ``https://github.com/googleapis/python -cloud-common /blob/main/CONTRIBUTING.rst ``)
212+ ``https://github.com/googleapis/google -cloud-python /blob/main/CONTRIBUTING.rst ``)
213213may cause problems creating links or rendering the description.
214214
215215.. _description on PyPI : https://pypi.org/project/google-cloud-common
@@ -226,17 +226,19 @@ We support:
226226- `Python 3.9 `_
227227- `Python 3.10 `_
228228- `Python 3.11 `_
229+ - `Python 3.12 `_
229230
230231.. _Python 3.7 : https://docs.python.org/3.7/
231232.. _Python 3.8 : https://docs.python.org/3.8/
232233.. _Python 3.9 : https://docs.python.org/3.9/
233234.. _Python 3.10 : https://docs.python.org/3.10/
234235.. _Python 3.11 : https://docs.python.org/3.11/
236+ .. _Python 3.12 : https://docs.python.org/3.12/
235237
236238
237239Supported versions can be found in our ``noxfile.py `` `config `_.
238240
239- .. _config : https://github.com/googleapis/python -cloud-common /blob/main/packages/google-cloud-common/noxfile.py
241+ .. _config : https://github.com/googleapis/google -cloud-python /blob/main/packages/google-cloud-common/noxfile.py
240242
241243
242244**********
0 commit comments