From ea885c17f045fe2e9f2733d92933bea56f037d04 Mon Sep 17 00:00:00 2001 From: Jonathan Edey <145066863+jonathanedey@users.noreply.github.com> Date: Mon, 4 Dec 2023 15:42:54 -0500 Subject: [PATCH 1/2] Deprecated support for Python 3.7 (#741) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 041c4167..f7cae21f 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,8 @@ requests, code review feedback, and also pull requests. ## Supported Python Versions -We currently support Python 3.7+. Firebase +We currently support Python 3.7+. However, Python 3.7 support is deprecated, +and developers are strongly advised to use Python 3.8 or higher. Firebase Admin Python SDK is also tested on PyPy and [Google App Engine](https://cloud.google.com/appengine/) environments. From 3773b6407f5d4dfabb17fcee5b6f8a7b1f3f8069 Mon Sep 17 00:00:00 2001 From: Jonathan Edey <145066863+jonathanedey@users.noreply.github.com> Date: Tue, 5 Dec 2023 12:15:08 -0500 Subject: [PATCH 2/2] [chore] Release 6.3.0 (#742) --- firebase_admin/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firebase_admin/__about__.py b/firebase_admin/__about__.py index ff6ad252..091fbd20 100644 --- a/firebase_admin/__about__.py +++ b/firebase_admin/__about__.py @@ -14,7 +14,7 @@ """About information (version, etc) for Firebase Admin SDK.""" -__version__ = '6.2.0' +__version__ = '6.3.0' __title__ = 'firebase_admin' __author__ = 'Firebase' __license__ = 'Apache License 2.0'