Skip to content

Commit 34b260d

Browse files
authored
Merge pull request #145 from bird-house/urllib-requests
2 parents 14c575b + cc8f98d commit 34b260d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Unreleased
66

77
Changes:
88

9+
* Pin `requests>=2.32.5` and `urllib3>=2.6.0` for latest security vulnerability fixes.
910
* Pin `requests>=2.32.4` to address security vulnerability
1011
(see `#143 <https://github.com/bird-house/twitcher/pull/143>`_).
1112

requirements.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ zope.sqlalchemy>=1.3,!=1.4.*
3030
# oauth2
3131
pyramid_oauthlib>=0.4.1
3232
oauthlib<3
33-
requests>=2.32.4
33+
requests>=2.32.4; python_version < "3.9" # noqa
34+
requests>=2.32.5; python_version >= "3.9"
3435
requests_oauthlib<1.2.0
3536
PyJWT>=2
3637
setuptools==75.3.2; python_version < "3.9" # noqa
3738
setuptools>=78.1.1; python_version >= "3.9"
38-
urllib3>=2.2.2
39+
urllib3>=2.2.2; python_version < "3.9" # noqa
40+
urllib3>=2.6.0; python_version >= "3.9"
3941
zipp>=3.19.1

0 commit comments

Comments
 (0)