Skip to content

Commit 716eab0

Browse files
authored
fix(setup): Make sure all packages are bundled (#133)
* fix(setup): Make sure all packages are bundled * prep release * black
1 parent 1c0a61d commit 716eab0

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.6.3 - 2024-09-03
2+
3+
1. Make sure setup.py for posthoganalytics package also discovers the new exception integration package.
4+
15
## 3.6.2 - 2024-09-03
26

37
1. Make sure setup.py discovers the new exception integration package.

posthog/version.py

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

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

setup_analytics.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@
2727
maintainer="PostHog",
2828
maintainer_email="[email protected]",
2929
test_suite="posthoganalytics.test.all",
30-
packages=["posthoganalytics", "posthoganalytics.test", "posthoganalytics.sentry"],
30+
packages=[
31+
"posthoganalytics",
32+
"posthoganalytics.test",
33+
"posthoganalytics.sentry",
34+
"posthoganalytics.exception_integrations",
35+
],
3136
license="MIT License",
3237
install_requires=install_requires,
3338
tests_require=tests_require,

0 commit comments

Comments
 (0)