From 0ff8adc7d9b8605ed31672a8b383c6701015f220 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 7 Jan 2026 21:10:51 +0000 Subject: [PATCH 1/3] docs: add Python version support table to README Add a table documenting which SDK versions introduced or dropped support for different Python versions, based on CHANGELOG.md entries. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 36fa6969..b4775f47 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,14 @@ Please see the [Python integration docs](https://posthog.com/docs/integrations/python-integration) for details. +## Python Version Support + +| SDK Version | Python Versions Supported | Notes | +|-------------|---------------------------|-------| +| 7.0.2+ | 3.10, 3.11, 3.12, 3.13, 3.14 | Added Python 3.14 support | +| 7.0.0 | 3.10, 3.11, 3.12, 3.13 | Dropped Python 3.9 support | +| 4.0.1 - 6.x | 3.9, 3.10, 3.11, 3.12, 3.13 | Python 3.9+ required | + ## Development ### Testing Locally From b531ff543d3a83921d75cf11a42edb89e0564f9e Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 7 Jan 2026 21:11:56 +0000 Subject: [PATCH 2/3] fix: correct Python 3.14 support version to 7.4.3 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b4775f47..3b5f28e8 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ Please see the [Python integration docs](https://posthog.com/docs/integrations/p | SDK Version | Python Versions Supported | Notes | |-------------|---------------------------|-------| -| 7.0.2+ | 3.10, 3.11, 3.12, 3.13, 3.14 | Added Python 3.14 support | -| 7.0.0 | 3.10, 3.11, 3.12, 3.13 | Dropped Python 3.9 support | +| 7.4.3+ | 3.10, 3.11, 3.12, 3.13, 3.14 | Added Python 3.14 support | +| 7.0.0 - 7.4.2 | 3.10, 3.11, 3.12, 3.13 | Dropped Python 3.9 support | | 4.0.1 - 6.x | 3.9, 3.10, 3.11, 3.12, 3.13 | Python 3.9+ required | ## Development From bfbef9eb22e8e4556f8642edc1ac66a52acc069f Mon Sep 17 00:00:00 2001 From: Paul D'Ambra Date: Wed, 7 Jan 2026 21:46:59 +0000 Subject: [PATCH 3/3] Apply suggestions from code review Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3b5f28e8..d115c117 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ Please see the [Python integration docs](https://posthog.com/docs/integrations/p | SDK Version | Python Versions Supported | Notes | |-------------|---------------------------|-------| -| 7.4.3+ | 3.10, 3.11, 3.12, 3.13, 3.14 | Added Python 3.14 support | -| 7.0.0 - 7.4.2 | 3.10, 3.11, 3.12, 3.13 | Dropped Python 3.9 support | +| 7.3.1+ | 3.10, 3.11, 3.12, 3.13, 3.14 | Added Python 3.14 support | +| 7.0.0 - 7.0.1 | 3.10, 3.11, 3.12, 3.13 | Dropped Python 3.9 support | | 4.0.1 - 6.x | 3.9, 3.10, 3.11, 3.12, 3.13 | Python 3.9+ required | ## Development