Skip to content

Commit 0800f9b

Browse files
committed
fix: Remove urllib3 requirement restriction
1 parent 5e22583 commit 0800f9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
python_dateutil >= 2.5.3
22
setuptools >= 21.0.0
3-
urllib3 >= 1.25.3, < 2.1.0
3+
urllib3 >= 1.25.3
44
aenum >= 3.1.11
55
requests >= 2.31.0
66
boto3 >= 1.33.8

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
VERSION = "1.0.1"
1919
PYTHON_REQUIRES = ">=3.8"
2020
REQUIRES = [
21-
"urllib3 >= 1.25.3, < 2.1.0",
21+
"urllib3>=1.25.3",
2222
"python-dateutil",
2323
"aenum",
2424
"requests~=2.32",

0 commit comments

Comments
 (0)