Skip to content

Commit 83a785d

Browse files
committed
Make cpython docs venv
1 parent f420781 commit 83a785d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

generate.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
# "gitpython",
44
# "potodo",
55
# "jinja2",
6-
# "sphinx",
7-
# "blurb",
86
# ]
97
#
108
# [tool.uv.sources]
@@ -23,6 +21,7 @@
2321

2422
with TemporaryDirectory() as clones_dir:
2523
Repo.clone_from(f'https://github.com/python/cpython.git', Path(clones_dir, 'cpython'), depth=1, branch='3.13')
24+
run(['make', '-C', Path(clones_dir, 'cpython/Doc'), 'venv'], check=True)
2625
run(['make', '-C', Path(clones_dir, 'cpython/Doc'), 'gettext'], check=True)
2726
for language in ('es', 'fr', 'id', 'it', 'ja', 'ko', 'pl', 'pt-br', 'tr', 'uk', 'zh-cn', 'zh-tw'):
2827
clone_path = Path(clones_dir, language)

0 commit comments

Comments
 (0)