From 61e433208d0f800b1fcdaa666ba324149c0fcb79 Mon Sep 17 00:00:00 2001
From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com>
Date: Thu, 7 Oct 2021 18:18:47 +0000
Subject: [PATCH] chore(python): fix formatting issue in noxfile.py.j2 (#53)
---
.../google-cloud-private-catalog/.github/.OwlBot.lock.yaml | 2 +-
packages/google-cloud-private-catalog/CONTRIBUTING.rst | 6 ++++--
packages/google-cloud-private-catalog/noxfile.py | 2 +-
3 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/packages/google-cloud-private-catalog/.github/.OwlBot.lock.yaml b/packages/google-cloud-private-catalog/.github/.OwlBot.lock.yaml
index ee94722ab57b..76d0baa0a49d 100644
--- a/packages/google-cloud-private-catalog/.github/.OwlBot.lock.yaml
+++ b/packages/google-cloud-private-catalog/.github/.OwlBot.lock.yaml
@@ -1,3 +1,3 @@
docker:
image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest
- digest: sha256:6e7328583be8edd3ba8f35311c76a1ecbc823010279ccb6ab46b7a76e25eafcc
+ digest: sha256:4370ced27a324687ede5da07132dcdc5381993502a5e8a3e31e16dc631d026f0
diff --git a/packages/google-cloud-private-catalog/CONTRIBUTING.rst b/packages/google-cloud-private-catalog/CONTRIBUTING.rst
index 40a1290ff9e4..6bd723aeab5c 100644
--- a/packages/google-cloud-private-catalog/CONTRIBUTING.rst
+++ b/packages/google-cloud-private-catalog/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::
@@ -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/packages/google-cloud-private-catalog/noxfile.py b/packages/google-cloud-private-catalog/noxfile.py
index 832ef3bce70a..b20209c921e5 100644
--- a/packages/google-cloud-private-catalog/noxfile.py
+++ b/packages/google-cloud-private-catalog/noxfile.py
@@ -29,7 +29,7 @@
DEFAULT_PYTHON_VERSION = "3.8"
SYSTEM_TEST_PYTHON_VERSIONS = ["3.8"]
-UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9"]
+UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10"]
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()