From 458596c45bfc97f26aa320ffde8a82d26ac3082e Mon Sep 17 00:00:00 2001
From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com>
Date: Fri, 13 Aug 2021 11:41:43 -0400
Subject: [PATCH] chore: drop mention of Python 2.7 from templates (#74)

Source-Link: https://github.com/googleapis/synthtool/commit/facee4cc1ea096cd8bcc008bb85929daa7c414c0
Post-Processor: gcr.io/repo-automation-bots/owlbot-python:latest@sha256:9743664022bd63a8084be67f144898314c7ca12f0a03e422ac17c733c129d803

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
---
 .../.github/.OwlBot.lock.yaml                        |  2 +-
 packages/google-cloud-org-policy/noxfile.py          | 12 +++++++++---
 .../readme-gen/templates/install_deps.tmpl.rst       |  2 +-
 3 files changed, 11 insertions(+), 5 deletions(-)

diff --git a/packages/google-cloud-org-policy/.github/.OwlBot.lock.yaml b/packages/google-cloud-org-policy/.github/.OwlBot.lock.yaml
index b771c37caef8..a9fcd07cc43b 100644
--- a/packages/google-cloud-org-policy/.github/.OwlBot.lock.yaml
+++ b/packages/google-cloud-org-policy/.github/.OwlBot.lock.yaml
@@ -1,3 +1,3 @@
 docker:
   image: gcr.io/repo-automation-bots/owlbot-python:latest
-  digest: sha256:a1a891041baa4ffbe1a809ac1b8b9b4a71887293c9101c88e8e255943c5aec2d
+  digest: sha256:9743664022bd63a8084be67f144898314c7ca12f0a03e422ac17c733c129d803
diff --git a/packages/google-cloud-org-policy/noxfile.py b/packages/google-cloud-org-policy/noxfile.py
index ffc58c9e8511..508bbf9d4324 100644
--- a/packages/google-cloud-org-policy/noxfile.py
+++ b/packages/google-cloud-org-policy/noxfile.py
@@ -114,9 +114,15 @@ def default(session):
     constraints_path = str(
         CURRENT_DIRECTORY / "testing" / f"constraints-{session.python}.txt"
     )
-    session.install("asyncmock", "pytest-asyncio", "-c", constraints_path)
-
-    session.install("mock", "pytest", "pytest-cov", "-c", constraints_path)
+    session.install(
+        "mock",
+        "asyncmock",
+        "pytest",
+        "pytest-cov",
+        "pytest-asyncio",
+        "-c",
+        constraints_path,
+    )
 
     session.install("-e", ".", "-c", constraints_path)
 
diff --git a/packages/google-cloud-org-policy/scripts/readme-gen/templates/install_deps.tmpl.rst b/packages/google-cloud-org-policy/scripts/readme-gen/templates/install_deps.tmpl.rst
index a0406dba8c84..275d649890d7 100644
--- a/packages/google-cloud-org-policy/scripts/readme-gen/templates/install_deps.tmpl.rst
+++ b/packages/google-cloud-org-policy/scripts/readme-gen/templates/install_deps.tmpl.rst
@@ -12,7 +12,7 @@ Install Dependencies
    .. _Python Development Environment Setup Guide:
        https://cloud.google.com/python/setup
 
-#. Create a virtualenv. Samples are compatible with Python 2.7 and 3.4+.
+#. Create a virtualenv. Samples are compatible with Python 3.6+.
 
     .. code-block:: bash