Skip to content

Commit 52bb579

Browse files
committed
chore: update repo URLs and references and check for Ruff
1 parent 84ca5f5 commit 52bb579

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

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

packages/sqlalchemy-spanner/README.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ configurations. There may be configurations and/or data model variations
1414
that have not yet been covered by the tests and that show unexpected
1515
behavior. Please report any problems that you might encounter by
1616
`creating a new
17-
issue <https://github.com/googleapis/python-spanner-sqlalchemy/issues/new>`__.
17+
issue <https://github.com/googleapis/google-cloud-python/issues/new>`__.
1818

1919
- `Cloud Spanner product
2020
documentation <https://cloud.google.com/spanner/docs>`__
@@ -48,7 +48,7 @@ Git-repository:
4848

4949
::
5050

51-
git clone https://github.com/googleapis/python-spanner-sqlalchemy.git
51+
git clone https://github.com/googleapis/google-cloud-python.git
5252

5353
Next install the package from the package ``setup.py`` file:
5454

@@ -61,7 +61,7 @@ During setup the dialect will be registered with entry points.
6161
Samples
6262
-------------
6363

64-
The `samples directory <https://github.com/googleapis/python-spanner-sqlalchemy/blob/-/samples/README.md>`__
64+
The `samples directory <https://github.com/googleapis/google-cloud-python/blob/-/samples/README.md>`__
6565
contains multiple examples for how to configure and use common Spanner features.
6666

6767

@@ -380,7 +380,7 @@ into ReadOnly mode:
380380
connection.execute(select(["*"], from_obj=table)).fetchall()
381381
382382
See the `Read-only transaction sample
383-
<https://github.com/googleapis/python-spanner-sqlalchemy/blob/-/samples/read_only_transaction_sample.py>`__
383+
<https://github.com/googleapis/google-cloud-python/blob/-/samples/read_only_transaction_sample.py>`__
384384
for a concrete example.
385385

386386
ReadOnly/ReadWrite mode of a connection can't be changed while a
@@ -551,7 +551,7 @@ Contributing
551551

552552
Contributions to this library are welcome and encouraged. Please report
553553
issues, file feature requests, and send pull requests. See
554-
`CONTRIBUTING <https://github.com/googleapis/python-spanner-sqlalchemy/blob/main/contributing.md>`__
554+
`CONTRIBUTING <https://github.com/googleapis/google-cloud-python/blob/main/contributing.md>`__
555555
for more information on how to get started.
556556

557557
**Note that this project is not officially supported by Google as part
@@ -560,5 +560,5 @@ of the Cloud Spanner product.**
560560
Please note that this project is released with a Contributor Code of
561561
Conduct. By participating in this project you agree to abide by its
562562
terms. See the `Code of
563-
Conduct <https://github.com/googleapis/python-spanner-sqlalchemy/blob/main/code-of-conduct.md>`__
563+
Conduct <https://github.com/googleapis/google-cloud-python/blob/main/code-of-conduct.md>`__
564564
for more information.

packages/sqlalchemy-spanner/noxfile.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,8 @@ def system(session):
249249
@nox.session(python=UNIT_TEST_PYTHON_VERSIONS)
250250
def unit(session):
251251
"""Run unit tests."""
252+
if session.python in ("3.7",):
253+
session.skip("Python 3.7 is no longer supported")
252254
# Run SQLAlchemy dialect compliance test suite with OpenTelemetry.
253255
session.install("setuptools")
254256
session.install("pytest")

0 commit comments

Comments
 (0)