Skip to content

Commit 5d58a53

Browse files
authored
fix: lets try again (#244)
* maybe * bump version
1 parent 7af8e88 commit 5d58a53

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: echo "REPO_VERSION=$(python3 posthog/version.py)" >> $GITHUB_ENV
3030

3131
- name: Prepare for building release
32-
run: pip install -U pip setuptools wheel twine
32+
run: pip install -U pip setuptools packaging wheel twine
3333

3434
- name: Push release to PyPI
3535
run: make release && make release_analytics

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 4.3.1 - 2025-06-06
1+
## 4.3.2 - 2025-06-06
22

33
Add context management:
44
- New context manager with `posthog.new_context()`

posthog/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "4.3.1"
1+
VERSION = "4.3.2"
22

33
if __name__ == "__main__":
44
print(VERSION, end="") # noqa: T201

pyproject.toml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,9 @@ build-backend = "setuptools.build_meta"
66
name = "posthog"
77
dynamic = ["version"]
88
description = "Integrate PostHog into any python application."
9-
authors = [
10-
{name = "PostHog", email = "[email protected]"}
11-
]
12-
maintainers = [
13-
{name = "PostHog", email = "[email protected]"}
14-
]
15-
license = {text = "MIT License"}
9+
authors = [{ name = "PostHog", email = "[email protected]" }]
10+
maintainers = [{ name = "PostHog", email = "[email protected]" }]
11+
license = { text = "MIT License" }
1612
readme = "README.md"
1713
requires-python = ">=3.9"
1814
classifiers = [
@@ -87,8 +83,10 @@ packages = [
8783
"posthog.exception_integrations",
8884
]
8985

86+
license-files = []
87+
9088
[tool.setuptools.dynamic]
91-
version = {attr = "posthog.version.VERSION"}
89+
version = { attr = "posthog.version.VERSION" }
9290

9391
[tool.pytest.ini_options]
9492
asyncio_mode = "auto"

0 commit comments

Comments
 (0)