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 88
99* Add Python 3.13 to CI and project setup.
1010* Update docker base to `python:3.13.11-alpine3.23 `.
11+ * Pin `requests>=2.32.5 ` and `urllib3>=2.6.0 ` for latest security vulnerability fixes.
1112* Pin `requests>=2.32.4 ` to address security vulnerability
1213 (see `#143 <https://github.com/bird-house/twitcher/pull/143 >`_).
1314
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