Skip to content

Commit 09f0c76

Browse files
committed
chore: update repo URLs and references and check for Ruff
1 parent 977b1f7 commit 09f0c76

3 files changed

Lines changed: 13 additions & 13 deletions

File tree

packages/google-cloud-bigquery/.repo-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"release_level": "stable",
88
"language": "python",
99
"library_type": "GAPIC_COMBO",
10-
"repo": "googleapis/python-bigquery",
10+
"repo": "googleapis/google-cloud-python",
1111
"distribution_name": "google-cloud-bigquery",
1212
"api_id": "bigquery.googleapis.com",
1313
"requires_billing": false,

packages/google-cloud-bigquery/CONTRIBUTING.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,14 @@ You'll have to create a development environment using a Git checkout:
4242

4343
- Clone your fork of ``python-bigquery`` from your GitHub account to your local
4444
computer, substituting your account username and specifying the destination
45-
as ``hack-on-python-bigquery``. E.g.::
45+
as ``hack-on-google-cloud-python``. E.g.::
4646

4747
$ cd ${HOME}
48-
$ git clone git@github.com:USERNAME/python-bigquery.git hack-on-python-bigquery
49-
$ cd hack-on-python-bigquery
50-
# Configure remotes such that you can pull changes from the googleapis/python-bigquery
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-bigquery.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.
6060
To work on the codebase and run the tests, we recommend using ``nox``,
6161
but you can also use a ``virtualenv`` of your own creation.
6262

63-
.. _repo: https://github.com/googleapis/python-bigquery
63+
.. _repo: https://github.com/googleapis/google-cloud-python/tree/main/packages/google-cloud-bigquery
6464

6565
Using ``nox``
6666
=============
@@ -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
210210
PyPI, relative links which will work on GitHub (e.g. ``CONTRIBUTING.rst``
211211
instead of
212-
``https://github.com/googleapis/python-bigquery/blob/main/CONTRIBUTING.rst``)
212+
``https://github.com/googleapis/google-cloud-python/blob/main/packages/google-cloud-bigquery/CONTRIBUTING.rst``)
213213
may cause problems creating links or rendering the description.
214214

215215
.. _description on PyPI: https://pypi.org/project/google-cloud-bigquery
@@ -238,7 +238,7 @@ We support:
238238

239239
Supported versions can be found in our ``noxfile.py`` `config`_.
240240

241-
.. _config: https://github.com/googleapis/python-bigquery/blob/main/noxfile.py
241+
.. _config: https://github.com/googleapis/google-cloud-python/blob/main/packages/google-cloud-bigquery/noxfile.py
242242

243243

244244
We also explicitly decided to support Python 3 beginning with version 3.9.

packages/google-cloud-bigquery/noxfile.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,11 +158,11 @@ def unit_noextras(session):
158158

159159
# Install optional dependencies that are out-of-date to see that
160160
# we fail gracefully.
161-
# https://github.com/googleapis/python-bigquery/issues/933
161+
# https://github.com/googleapis/google-cloud-python/issues/933
162162
#
163163
# We only install this extra package on one of the two Python versions
164164
# so that it continues to be an optional dependency.
165-
# https://github.com/googleapis/python-bigquery/issues/1877
165+
# https://github.com/googleapis/google-cloud-python/issues/1877
166166
if session.python == UNIT_TEST_PYTHON_VERSIONS[0]:
167167
session.install("pyarrow==4.0.0", "numpy==1.20.2")
168168
default(session, install_extras=False)
@@ -194,7 +194,7 @@ def pytype(session):
194194
"""Run type checks with pytype."""
195195
# An indirect dependecy attrs==21.1.0 breaks the check, and installing a less
196196
# recent version avoids the error until a possibly better fix is found.
197-
# https://github.com/googleapis/python-bigquery/issues/655
197+
# https://github.com/googleapis/google-cloud-python/issues/655
198198

199199
session.install("attrs==20.3.0")
200200
session.install("-e", ".[all]")
@@ -371,7 +371,7 @@ def cover(session):
371371
def prerelease_deps(session):
372372
"""Run all tests with prerelease versions of dependencies installed.
373373
374-
https://github.com/googleapis/python-bigquery/issues/95
374+
https://github.com/googleapis/google-cloud-python/issues/95
375375
"""
376376
# Because we test minimum dependency versions on the minimum Python
377377
# version, the first version we test with in the unit tests sessions has a

0 commit comments

Comments
 (0)