Skip to content

Commit 5ae7feb

Browse files
authored
chore: Remove upper bound (#85)
* remove upper bound * format
1 parent 6534afd commit 5ae7feb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

posthog/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,6 @@ def shutdown(self):
366366

367367
def _load_feature_flags(self):
368368
try:
369-
370369
response = get(
371370
self.personal_api_key,
372371
f"/api/feature_flag/local_evaluation/?token={self.api_key}",

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. posthog-python is the python package.
1515
"""
1616

17-
install_requires = ["requests>=2.7,<3.0", "six>=1.5", "monotonic>=1.5", "backoff>=1.10.0,<2.0.0", "python-dateutil>2.1"]
17+
install_requires = ["requests>=2.7,<3.0", "six>=1.5", "monotonic>=1.5", "backoff>=1.10.0", "python-dateutil>2.1"]
1818

1919
extras_require = {
2020
"dev": [

0 commit comments

Comments
 (0)