Skip to content

Commit 140e1e2

Browse files
Revert "check urllib3 upgrade on gha runner"
This reverts commit 6b3fdb8.
1 parent 6b3fdb8 commit 140e1e2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

cloudsmith_cli/core/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def create_requests_session(
106106
retry = RetryWithCallback(
107107
backoff_factor=backoff_factor,
108108
connect=retries,
109-
allowed_methods=False,
109+
method_whitelist=False,
110110
read=retries,
111111
status_forcelist=tuple(status_forcelist),
112112
status=retries,

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ typing-extensions==4.13.2
135135
# via
136136
# astroid
137137
# pylint
138-
urllib3==2.5.0
138+
urllib3==1.26.20
139139
# via
140140
# cloudsmith-api
141141
# cloudsmith-cli (setup.py)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def get_long_description():
5858
"requests>=2.18.4",
5959
"requests_toolbelt>=0.8.0",
6060
"semver>=2.7.9",
61-
"urllib3==2.5.0",
61+
"urllib3<2.0",
6262
],
6363
entry_points={
6464
"console_scripts": ["cloudsmith=cloudsmith_cli.cli.commands.main:main"]

0 commit comments

Comments
 (0)