Skip to content

Commit 1f1cd59

Browse files
committed
maybe
1 parent 7af8e88 commit 1f1cd59

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
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

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)