From a5ea100acef25db3124ef20070654e6892ce516e Mon Sep 17 00:00:00 2001 From: Hans Li Date: Mon, 25 Aug 2025 17:35:16 -0700 Subject: [PATCH] More tweaks on deps --- CHANGES.txt | 5 ++++- mixpanel/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index bdf842b..96a3d61 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,5 +1,8 @@ +v4.11.1 +* Loosen requirements for `requests` lib to >=2.4.2 to keep compatible with 2.10 + v4.11.0 -* Set minimum supported python version to 3.9, deprecating support for end-of-life versions of python +* Set minimum supported python version to 3.9, deprecating support for end-of-life versions of python * Convert setup.py to pyproject.toml v4.9.0 diff --git a/mixpanel/__init__.py b/mixpanel/__init__.py index 046d068..1a9035a 100644 --- a/mixpanel/__init__.py +++ b/mixpanel/__init__.py @@ -24,7 +24,7 @@ from requests.auth import HTTPBasicAuth import urllib3 -__version__ = '4.11.0' +__version__ = '4.11.1' VERSION = __version__ # TODO: remove when bumping major version. logger = logging.getLogger(__name__) diff --git a/pyproject.toml b/pyproject.toml index 2b2035e..0230898 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ authors = [ ] requires-python = ">=3.9" dependencies = [ - "requests>=2.25.0, <3", + "requests>=2.4.2, <3", ] keywords = ["mixpanel", "analytics"] classifiers = [