File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ Unreleased
66
77Changes:
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
Original file line number Diff line number Diff line change @@ -30,10 +30,12 @@ zope.sqlalchemy>=1.3,!=1.4.*
3030# oauth2
3131pyramid_oauthlib >= 0.4.1
3232oauthlib < 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"
3435requests_oauthlib < 1.2.0
3536PyJWT >= 2
3637setuptools == 75.3.2 ; python_version < "3.9" # noqa
3738setuptools >= 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"
3941zipp >= 3.19.1
You can’t perform that action at this time.
0 commit comments