Skip to content

Commit 46ee244

Browse files
committed
chore: update repo URLs and references and check for Ruff
1 parent 53aa121 commit 46ee244

4 files changed

Lines changed: 11 additions & 9 deletions

File tree

packages/django-google-spanner/.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": "INTEGRATION",
10-
"repo": "googleapis/python-spanner-django",
10+
"repo": "googleapis/google-cloud-python",
1111
"distribution_name": "django-google-spanner",
1212
"requires_billing": true,
1313
"api_shortname": "django-google-spanner"

packages/django-google-spanner/README.rst

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ To install from source:
9090

9191
.. code:: shell
9292
93-
git clone git@github.com:googleapis/python-spanner-django.git
93+
git clone git@github.com:googleapis/google-cloud-python.git
9494
cd python-spanner-django
9595
pip3 install -e .
9696
@@ -240,13 +240,13 @@ How it works
240240
Overall design
241241
~~~~~~~~~~~~~~
242242

243-
.. figure:: https://raw.githubusercontent.com/googleapis/python-spanner-django/main/assets/overview.png
243+
.. figure:: https://raw.githubusercontent.com/googleapis/google-cloud-python/main/assets/overview.png
244244
:alt: "Overall Design"
245245

246246
Internals
247247
~~~~~~~~~
248248

249-
.. figure:: https://raw.githubusercontent.com/googleapis/python-spanner-django/main/assets/internals.png
249+
.. figure:: https://raw.githubusercontent.com/googleapis/google-cloud-python/main/assets/internals.png
250250
:alt: "Internals"
251251

252252

@@ -267,11 +267,11 @@ How to contribute
267267

268268
Contributions to this library are always welcome and highly encouraged.
269269

270-
See `CONTRIBUTING <https://github.com/googleapis/python-spanner-django/blob/main/CONTRIBUTING.md>`_ for more information on how to get started.
270+
See `CONTRIBUTING <https://github.com/googleapis/google-cloud-python/blob/main/CONTRIBUTING.md>`_ for more information on how to get started.
271271

272272
Please note that this project is released with a Contributor Code of Conduct.
273273
By participating in this project you agree to abide by its terms. See the `Code
274-
of Conduct <https://github.com/googleapis/python-spanner-django/blob/main/CODE_OF_CONDUCT.md>`_ for more information.
274+
of Conduct <https://github.com/googleapis/google-cloud-python/blob/main/CODE_OF_CONDUCT.md>`_ for more information.
275275

276276

277277
Limitations
@@ -282,7 +282,7 @@ Spanner has certain limitations of its own. The full set of limitations is docum
282282
It is recommended that you go through that list.
283283

284284
Django spanner has a set of limitations as well, which you can find
285-
`here <https://github.com/googleapis/python-spanner-django/blob/main/docs/limitations.rst>`__.
285+
`here <https://github.com/googleapis/google-cloud-python/blob/main/docs/limitations.rst>`__.
286286

287287
Features from spanner that are not supported in Django-spanner are listed
288-
`here <https://github.com/googleapis/python-spanner-django/blob/main/docs/limitations-spanner.rst>`__.
288+
`here <https://github.com/googleapis/google-cloud-python/blob/main/docs/limitations-spanner.rst>`__.

packages/django-google-spanner/noxfile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ def default(session, django_version="3.2"):
103103
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
104104
def unit(session):
105105
"""Run the unit test suite."""
106+
if session.python in ("3.7",):
107+
session.skip("Python 3.7 is no longer supported")
106108
print("Unit tests with django 3.2")
107109
default(session)
108110
print("Unit tests with django 4.2")

packages/django-google-spanner/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
license="BSD",
5555
packages=find_packages(exclude=["tests"]),
5656
install_requires=dependencies,
57-
url="https://github.com/googleapis/python-spanner-django",
57+
url="https://github.com/googleapis/google-cloud-python/tree/main/packages/django-google-spanner",
5858
classifiers=[
5959
release_status,
6060
"Environment :: Web Environment",

0 commit comments

Comments
 (0)