Skip to content

Commit 2d5fb04

Browse files
authored
Merge branch 'master' into python3.13
2 parents 3d253ac + 34b260d commit 2d5fb04

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
@@ -8,6 +8,7 @@ Changes:
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

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)