Skip to content

Commit bf56bd7

Browse files
committed
Update requirements.txt
Signed-off-by: Jono Yang <[email protected]>
1 parent e098f25 commit bf56bd7

File tree

3 files changed

+84
-1
lines changed

3 files changed

+84
-1
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: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
aboutcode-toolkit==11.1.1
2+
alabaster==1.0.0
3+
anyio==4.11.0
4+
babel==2.17.0
5+
boolean.py==5.0
6+
cffi==2.0.0
7+
colorama==0.4.6
8+
cryptography==46.0.3
9+
doc8==2.0.0
10+
docutils==0.21.2
11+
et_xmlfile==2.0.0
12+
execnet==2.1.1
13+
h11==0.16.0
14+
id==1.5.0
15+
imagesize==1.4.1
16+
iniconfig==2.3.0
17+
jaraco.classes==3.4.0
18+
jaraco.context==6.0.1
19+
jaraco.functools==4.3.0
20+
jeepney==0.9.0
21+
jinja2==3.1.6
22+
keyring==25.6.0
23+
license-expression==30.4.4
24+
markdown-it-py==4.0.0
25+
markupsafe==3.0.3
26+
mdurl==0.1.2
27+
more-itertools==10.8.0
28+
nh3==0.3.1
29+
openpyxl==3.1.5
30+
packageurl-python==0.17.5
31+
packaging==25.0
32+
pluggy==1.6.0
33+
pycparser==2.23
34+
pygments==2.19.2
35+
pytest==8.4.2
36+
pytest-xdist==3.8.0
37+
readme_renderer==44.0
38+
requests-toolbelt==1.0.0
39+
restructuredtext_lint==1.4.0
40+
rfc3986==2.0.0
41+
rich==14.2.0
42+
roman-numerals-py==3.1.0
43+
ruff==0.14.2
44+
secretstorage==3.4.0
45+
sniffio==1.3.1
46+
snowballstemmer==3.0.1
47+
sphinx==8.2.3
48+
sphinx-autobuild==2025.8.25
49+
sphinx-copybutton==0.5.2
50+
sphinx-reredirects==1.0.0
51+
sphinx-rtd-dark-mode==1.3.0
52+
sphinx-rtd-theme==3.0.2
53+
sphinxcontrib-applehelp==2.0.0
54+
sphinxcontrib-devhelp==2.0.0
55+
sphinxcontrib-htmlhelp==2.1.0
56+
sphinxcontrib-jquery==4.1
57+
sphinxcontrib-jsmath==1.0.1
58+
sphinxcontrib-qthelp==2.0.0
59+
sphinxcontrib-serializinghtml==2.0.0
60+
starlette==0.48.0
61+
stevedore==5.5.0
62+
twine==6.2.0
63+
uvicorn==0.38.0
64+
watchfiles==1.1.1
65+
websockets==15.0.1

requirements.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
attrs==25.4.0
2+
beautifulsoup4==4.14.2
3+
certifi==2025.10.5
4+
chardet==5.2.0
5+
charset-normalizer==3.4.4
6+
click==8.3.0
7+
commoncode==32.4.0
8+
ducer==1.2.0
9+
idna==3.11
10+
pip==25.2
11+
PyYAML==6.0.3
12+
requests==2.32.5
13+
saneyaml==0.6.1
14+
setuptools==80.9.0
15+
soupsieve==2.8
16+
text-unidecode==1.3
17+
typing_extensions==4.15.0
18+
urllib3==2.5.0

0 commit comments

Comments
 (0)