Skip to content

Commit 85bc90a

Browse files
authored
Merge pull request #961 from alertlogic/pin-urllib3
pin urllib3 to fix urllib3 2.0 issues with ssl on build images
2 parents d3ed0d9 + 1af017d commit 85bc90a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
jsonschema[format_nongpl]==3.2.0
22
pyyaml==5.4.1
33
requests>=2.18
4+
urllib3<2
45
jsonmerge>=1.8.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open('README.md') as readme_file:
44
readme = readme_file.read()
55

6-
requirements = ['jsonschema[format_nongpl]==3.2.0', 'pyyaml>=5.4.1', 'requests>=2.18', 'jsonmerge>=1.8.0']
6+
requirements = ['jsonschema[format_nongpl]==3.2.0', 'pyyaml>=5.4.1', 'requests>=2.18', 'urllib3<2', 'jsonmerge>=1.8.0']
77

88
setup(
99
name='alertlogic-sdk-definitions',

0 commit comments

Comments
 (0)