Skip to content

Commit e323401

Browse files
authored
Merge pull request #177 from IBM/sclinnell-patch-urllib
Confirmed that the `urllib3` pinning was an artifact of a particular version conflict circa April 2023 that is long since resolved.
2 parents 9f0ff35 + 7b2b76f commit e323401

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Dockerfiles/base/00.python-redhat-ubi.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ LABEL maintainer="squad:git-defenders" url="https://github.ibm.com/whitewater/wh
33

44
User root
55
# install python 3.8 and corresponding pip ... install git (used in DS scan)
6-
RUN microdnf -y install python38 python38-pip git
6+
RUN microdnf -y install python39 python39-pip git
77
RUN microdnf -y update

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip>=21.1
2-
urllib3<2.0.0
2+
urllib3>2.4.0
33
coverage>=6.0b1
44
certifi>=2024.7.4
55
flake8

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
install_requires=[
2626
'pyyaml',
2727
'requests',
28-
'urllib3<2.0.0',
28+
'urllib3>2.4.0',
2929
'boxsdk[jwt]<4.0.0',
3030
'packaging',
3131
'tabulate',

0 commit comments

Comments
 (0)