From ffeb939d55ada0aac4b18b91b26ef431da58495e Mon Sep 17 00:00:00 2001 From: Lahiru Maramba Date: Tue, 22 Apr 2025 16:09:26 -0400 Subject: [PATCH 1/2] Python 3.8 has EoL'ed. Update README to deprecate Python 3.8 support (#873) Updated the 'Supported Python Versions' section in README.md to indicate that Python 3.7 and Python 3.8 support is deprecated, advising users to use Python 3.9 or higher. Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f7cae21ff..6e3ed6805 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,8 @@ requests, code review feedback, and also pull requests. ## Supported Python Versions -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 +We currently support Python 3.7+. However, Python 3.7 and Python 3.8 support is deprecated, +and developers are strongly advised to use Python 3.9 or higher. Firebase Admin Python SDK is also tested on PyPy and [Google App Engine](https://cloud.google.com/appengine/) environments. From bde3fb0134b2f84d789cff47b932c07981d6565b Mon Sep 17 00:00:00 2001 From: Jonathan Edey <145066863+jonathanedey@users.noreply.github.com> Date: Thu, 24 Apr 2025 14:49:17 -0400 Subject: [PATCH 2/2] [chore] Release 6.8.0 (#874) --- 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 2c606611f..c822fb375 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.7.0' +__version__ = '6.8.0' __title__ = 'firebase_admin' __author__ = 'Firebase' __license__ = 'Apache License 2.0'