Skip to content

Commit b837231

Browse files
Bump requirements to support python3.14
Signed-off-by: Ayan Sinha Mahapatra <[email protected]>
1 parent 1af7a71 commit b837231

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

etc/scripts/utils_requirements.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ def split_req(req):
153153
if not req:
154154
raise ValueError("req is required")
155155
# do not allow multiple constraints and tags
156-
if not any(c in req for c in ",;"):
156+
if any(c in req for c in ",;"):
157157
raise Exception(f"complex requirements with : or ; not supported: {req}")
158158
req = "".join(req.split())
159159
if not any(c in req for c in comparators):

requirements-dev.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ aboutcode-toolkit==11.1.1
22
black==23.1.0
33
bleach==6.0.0
44
boolean.py==4.0
5-
cffi==1.15.1
5+
cffi==2.0.0
66
cryptography==39.0.1
77
docutils==0.19
88
et-xmlfile==1.1.0
@@ -27,11 +27,11 @@ packaging==23.0
2727
pathspec==0.11.0
2828
pkginfo==1.9.6
2929
platformdirs==3.0.0
30-
pluggy==1.0.0
30+
pluggy==1.6.0
3131
pycodestyle==2.13.0
3232
pycparser==2.21
3333
pygments==2.14.0
34-
pytest==7.2.1
34+
pytest==8.4.2
3535
pytest-xdist==3.2.0
3636
readme-renderer==37.3
3737
requests-toolbelt==0.10.1

requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
attrs==25.3.0
2-
beautifulsoup4==4.13.4
3-
certifi==2025.4.26
1+
attrs==25.4.0
2+
beautifulsoup4==4.14.2
3+
certifi==2025.10.5
44
chardet==5.2.0
5-
charset-normalizer==3.4.2
5+
charset-normalizer==3.4.4
66
click==8.3.0
77
idna==3.10
88
pip==25.1.1
99
PyYAML==6.0.2
1010
requests==2.32.2
1111
saneyaml==0.6.1
12-
setuptools==80.3.1
13-
soupsieve==2.7
12+
setuptools==80.9.0
13+
soupsieve==2.8
1414
text-unidecode==1.3
15-
typing_extensions==4.13.2
16-
urllib3==1.26.20
15+
typing_extensions==4.15.0
16+
urllib3==2.5.0
1717
wheel==0.38.4

0 commit comments

Comments
 (0)