aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2021-08-03 13:59:25 -0400
committerGitHub <noreply@github.com>2021-08-03 13:59:25 -0400
commita30f004e74f709d46e905dd819c71f43354e9ac9 (patch)
tree6e4367ce5fecd92fde24337a7b26373328e8e9df /docs
parentff6ef1bd07fa68307b7c82c910416d770e7b3416 (diff)
downloadpython-api-core-a30f004e74f709d46e905dd819c71f43354e9ac9.tar.gz
fix!: drop support for Python 2.7 / 3.5 (#212)
Drop 'six' module Drop 'u"' prefixes for text Remove other Python 2.7 workarounds Drop use of 'pytz' Dxpand range to allow 'google-auth' 2.x versions Remove 'general_helpers.wraps': except for a backward-compatibility import, 'functools.wraps' does everything wee need on Python >= 3.6. Remove 'packaging' dependency Release-As: 2.0.0b1 Closes #74. Closes #215.
Diffstat (limited to 'docs')
-rw-r--r--docs/auth.rst19
1 files changed, 0 insertions, 19 deletions
diff --git a/docs/auth.rst b/docs/auth.rst
index faf0228..a9b296d 100644
--- a/docs/auth.rst
+++ b/docs/auth.rst
@@ -103,25 +103,6 @@ After creation, you can pass it directly to a :class:`Client <google.cloud.clien
.. _google-auth-guide: https://googleapis.dev/python/google-auth/latest/user-guide.html#service-account-private-key-files
-
-Google App Engine Standard First Generation Environment
--------------------------------------------------------
-
-These credentials are used only in the legacy Python 2.7
-`First Generation Standard Environment`_. All other App Engine
-runtimes use Compute Engine credentials.
-
-.. _First Generation Standard Environment: https://cloud.google.com/appengine/docs/standard/runtimes
-
-To create
-:class:`credentials <google.auth.app_engine.Credentials>`
-just for Google App Engine:
-
-.. code:: python
-
- from google.auth import app_engine
- credentials = app_engine.Credentials()
-
Google Compute Engine Environment
---------------------------------