Skip to content

Commit 127a066

Browse files
authored
More tweaks on deps (#139)
1 parent 0ce0815 commit 127a066

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

‎CHANGES.txt‎

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
v4.11.1
2+
* Loosen requirements for `requests` lib to >=2.4.2 to keep compatible with 2.10
3+
14
v4.11.0
2-
* Set minimum supported python version to 3.9, deprecating support for end-of-life versions of python
5+
* Set minimum supported python version to 3.9, deprecating support for end-of-life versions of python
36
* Convert setup.py to pyproject.toml
47

58
v4.9.0

‎mixpanel/__init__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from requests.auth import HTTPBasicAuth
2525
import urllib3
2626

27-
__version__ = '4.11.0'
27+
__version__ = '4.11.1'
2828
VERSION = __version__ # TODO: remove when bumping major version.
2929

3030
logger = logging.getLogger(__name__)

‎pyproject.toml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
]
1414
requires-python = ">=3.9"
1515
dependencies = [
16-
"requests>=2.25.0, <3",
16+
"requests>=2.4.2, <3",
1717
]
1818
keywords = ["mixpanel", "analytics"]
1919
classifiers = [

0 commit comments

Comments
 (0)