Skip to content

Commit

Permalink
fix(setup): Make sure all packages are bundled (#133)
Browse files Browse the repository at this point in the history
* fix(setup): Make sure all packages are bundled

* prep release

* black
  • Loading branch information
neilkakkar authored Sep 3, 2024
1 parent 1c0a61d commit 716eab0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.6.3 - 2024-09-03

1. Make sure setup.py for posthoganalytics package also discovers the new exception integration package.

## 3.6.2 - 2024-09-03

1. Make sure setup.py discovers the new exception integration package.
Expand Down
2 changes: 1 addition & 1 deletion posthog/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "3.6.2"
VERSION = "3.6.3"

if __name__ == "__main__":
print(VERSION, end="") # noqa: T201
7 changes: 6 additions & 1 deletion setup_analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@
maintainer="PostHog",
maintainer_email="[email protected]",
test_suite="posthoganalytics.test.all",
packages=["posthoganalytics", "posthoganalytics.test", "posthoganalytics.sentry"],
packages=[
"posthoganalytics",
"posthoganalytics.test",
"posthoganalytics.sentry",
"posthoganalytics.exception_integrations",
],
license="MIT License",
install_requires=install_requires,
tests_require=tests_require,
Expand Down

0 comments on commit 716eab0

Please sign in to comment.