aboutsummaryrefslogtreecommitdiff
path: root/README.rst
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 /README.rst
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 'README.rst')
-rw-r--r--README.rst15
1 files changed, 10 insertions, 5 deletions
diff --git a/README.rst b/README.rst
index 244043e..d94f3e8 100644
--- a/README.rst
+++ b/README.rst
@@ -1,7 +1,7 @@
Core Library for Google Client Libraries
========================================
-|pypi| |versions|
+|pypi| |versions|
This library is not meant to stand-alone. Instead it defines
common helpers used by all Google API clients. For more information, see the
@@ -16,8 +16,13 @@ common helpers used by all Google API clients. For more information, see the
Supported Python Versions
-------------------------
-Python >= 3.5
+Python >= 3.6
-Deprecated Python Versions
---------------------------
-Python == 2.7. Python 2.7 support will be removed on January 1, 2020.
+
+Unsupported Python Versions
+---------------------------
+
+Python == 2.7, Python == 3.5.
+
+The last version of this library compatible with Python 2.7 and 3.5 is
+`google-api_core==1.31.1`.