From 46f45cc3b0f8cfdc2adef0b2eb45e876fe968a5f Mon Sep 17 00:00:00 2001 From: Conor Fehilly Date: Fri, 16 Jan 2026 23:40:31 +0000 Subject: [PATCH 1/4] Add support for Python 3.11 in setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f55cb88..e57eac9 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,7 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', "License :: OSI Approved :: MIT License", ], -) \ No newline at end of file +) From fba8cfc40e586e320419a23bc3134daaef915a25 Mon Sep 17 00:00:00 2001 From: Conor Fehilly Date: Fri, 16 Jan 2026 23:44:28 +0000 Subject: [PATCH 2/4] Remove Python 3.8 from CI workflow matrix --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4a80673..b3051dd 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 From 6e63e41ff7e1110a01a1cef1bb1eabf8f18b3f9b Mon Sep 17 00:00:00 2001 From: Conor Fehilly Date: Fri, 16 Jan 2026 23:47:00 +0000 Subject: [PATCH 3/4] Remove old Python versions from classifiers --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index e57eac9..6ca8283 100644 --- a/setup.py +++ b/setup.py @@ -14,12 +14,10 @@ packages=setuptools.find_packages(), test_suite='', classifiers=[ - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', "License :: OSI Approved :: MIT License", ], ) From ce0d16baed81bf6755edc25f7d01d71099217ad3 Mon Sep 17 00:00:00 2001 From: Conor Fehilly Date: Fri, 16 Jan 2026 23:47:47 +0000 Subject: [PATCH 4/4] Update Python version support in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d798461..c3021f8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ To install: `pip install mock-firestore` -Python 3.8+ is supported. +Python 3.9+ is supported. ## Usage