Skip to content

Commit 3564d58

Browse files
fix: fully deprecate Python 3.9
1 parent 5249d02 commit 3564d58

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
strategy:
4747
matrix:
48-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
48+
python-version: ['3.10', '3.11', '3.12', '3.13']
4949

5050
steps:
5151
- uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ We recommend using [uv](https://docs.astral.sh/uv/). It's super fast.
3030
## PostHog recommends `uv` so...
3131

3232
```bash
33-
uv python install 3.9.19
34-
uv python pin 3.9.19
33+
uv python install 3.12
34+
uv python pin 3.12
3535
uv venv
3636
source env/bin/activate
3737
uv sync --extra dev --extra test

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
PostHog is developer-friendly, self-hosted product analytics.
1515
posthog-python is the python package.
1616
17-
This package requires Python 3.9 or higher.
17+
This package requires Python 3.10 or higher.
1818
"""
1919

2020
# Minimal setup.py for backward compatibility

setup_analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
PostHog is developer-friendly, self-hosted product analytics.
4848
posthog-python is the python package.
4949
50-
This package requires Python 3.9 or higher.
50+
This package requires Python 3.10 or higher.
5151
"""
5252

5353
# Minimal setup.py for backward compatibility

0 commit comments

Comments
 (0)