From fb31536d4893b6cd7844183e86fae0ce4b34e00e Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 24 Dec 2021 07:44:26 -0500 Subject: [PATCH 1/4] chore: update .repo-metadata.json --- .repo-metadata.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.repo-metadata.json b/.repo-metadata.json index e551b994..6c3e3bb7 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -1,13 +1,14 @@ { "name": "sqlalchemy-bigquery", "name_pretty": "SQLAlchemy dialect for BigQuery", - "client_documentation": "https://googleapis.dev/python/sqlalchemy-bigquery/latest/index.html", - "release_level": "beta", + "client_documentation": "https://cloud.google.com/python/docs/reference/sqlalchemy-bigquery/latest", + "release_level": "preview", "language": "python", "library_type": "INTEGRATION", "repo": "googleapis/python-bigquery-sqlalchemy", "distribution_name": "sqlalchemy-bigquery", "api_id": "bigquery.googleapis.com", "default_version": "", - "codeowner_team": "@googleapis/api-bigquery" + "codeowner_team": "@googleapis/api-bigquery", + "api_shortname": "sqlalchemy-bigquery" } From a92e3afb6d653319208b6a4e4eaca42c0665daa7 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Fri, 24 Dec 2021 09:58:58 -0500 Subject: [PATCH 2/4] revert --- .repo-metadata.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.repo-metadata.json b/.repo-metadata.json index 6c3e3bb7..7f265cc3 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -1,7 +1,7 @@ { "name": "sqlalchemy-bigquery", "name_pretty": "SQLAlchemy dialect for BigQuery", - "client_documentation": "https://cloud.google.com/python/docs/reference/sqlalchemy-bigquery/latest", + "client_documentation": "https://googleapis.dev/python/sqlalchemy-bigquery/latest/index.html", "release_level": "preview", "language": "python", "library_type": "INTEGRATION", From f7b0c462535b0871f959c0127d1d6698f0535075 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Tue, 28 Dec 2021 18:40:56 -0500 Subject: [PATCH 3/4] remove api_shortname --- .repo-metadata.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.repo-metadata.json b/.repo-metadata.json index 7f265cc3..741b6322 100644 --- a/.repo-metadata.json +++ b/.repo-metadata.json @@ -9,6 +9,5 @@ "distribution_name": "sqlalchemy-bigquery", "api_id": "bigquery.googleapis.com", "default_version": "", - "codeowner_team": "@googleapis/api-bigquery", - "api_shortname": "sqlalchemy-bigquery" + "codeowner_team": "@googleapis/api-bigquery" } From 77f734d62d1f92a9bc489a3e7af375d40acd516f Mon Sep 17 00:00:00 2001 From: Owl Bot Date: Thu, 30 Dec 2021 16:20:31 +0000 Subject: [PATCH 4/4] =?UTF-8?q?=F0=9F=A6=89=20Updates=20from=20OwlBot?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --- CONTRIBUTING.rst | 10 ++++++---- noxfile.py | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 779aa5a1..3a6be172 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -22,7 +22,7 @@ In order to add a feature: documentation. - The feature must work fully on the following CPython versions: - 3.6, 3.7, 3.8 and 3.9 on both UNIX and Windows. + 3.6, 3.7, 3.8, 3.9 and 3.10 on both UNIX and Windows. - The feature must not add unnecessary dependencies (where "unnecessary" is of course subjective, but new dependencies should @@ -72,7 +72,7 @@ We use `nox `__ to instrument our tests. - To run a single unit test:: - $ nox -s unit-3.9 -- -k + $ nox -s unit-3.10 -- -k .. note:: @@ -143,12 +143,12 @@ Running System Tests $ nox -s system # Run a single system test - $ nox -s system-3.9 -- -k + $ nox -s system-3.10 -- -k .. note:: - System tests are only configured to run under Python 3.8 and 3.9. + System tests are only configured to run under Python 3.8 and 3.10. For expediency, we do not run them in older versions of Python 3. This alone will not run the tests. You'll need to change some local @@ -225,11 +225,13 @@ We support: - `Python 3.7`_ - `Python 3.8`_ - `Python 3.9`_ +- `Python 3.10`_ .. _Python 3.6: https://docs.python.org/3.6/ .. _Python 3.7: https://docs.python.org/3.7/ .. _Python 3.8: https://docs.python.org/3.8/ .. _Python 3.9: https://docs.python.org/3.9/ +.. _Python 3.10: https://docs.python.org/3.10/ Supported versions can be found in our ``noxfile.py`` `config`_. diff --git a/noxfile.py b/noxfile.py index 0b1c0f6c..ce847c57 100644 --- a/noxfile.py +++ b/noxfile.py @@ -212,7 +212,7 @@ def compliance(session): ) if session.python == "3.8": extras = "[tests,alembic]" - elif session.python == "3.9": + elif session.python == "3.10": extras = "[tests,geography]" else: extras = "[tests]"