-
-
Notifications
You must be signed in to change notification settings - Fork 283
/
noxfile.py
669 lines (510 loc) · 17.9 KB
/
noxfile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
"""Common tasks to build, check and publish Spyder-Docs."""
# Standard library imports
import contextlib
import logging
import os
import tempfile
import shutil
import sys
import webbrowser
from pathlib import Path
# Third party imports
import nox # pylint: disable=import-error
import nox.logger # pylint: disable=import-error
# --- Global constants --- #
nox.options.error_on_external_run = True
nox.options.sessions = ["build"]
nox.options.default_venv_backend = "none"
ORG_NAME = "spyder-ide"
REPO_NAME = "spyder-docs"
REPO_URL_HTTPS = "https://github.com/{user}/{repo}.git"
REPO_URL_SSH = "[email protected]:{user}/{repo}.git"
IGNORE_REVS_FILE = ".git-blame-ignore-revs"
CANARY_COMMAND = ("sphinx-build", "--version")
BUILD_INVOCATION = ("python", "-m", "sphinx")
SOURCE_DIR = Path("doc").resolve()
BUILD_DIR = Path("doc/_build").resolve()
BUILD_OPTIONS = ("-n", "-W", "--keep-going")
HTML_BUILDER = "html"
HTML_BUILD_DIR = BUILD_DIR / HTML_BUILDER
HTML_INDEX_PATH = HTML_BUILD_DIR / "index.html"
SOURCE_LANGUAGE = "en"
TRANSLATION_LANGUAGES = ("es",)
ALL_LANGUAGES = (SOURCE_LANGUAGE,) + TRANSLATION_LANGUAGES
LOCALE_DIR = SOURCE_DIR / "locales"
GETTEXT_BUILDER = "gettext"
GETTEXT_BUILD_DIR = BUILD_DIR / GETTEXT_BUILDER
POT_DIR = LOCALE_DIR / "pot"
PO_LINE_WIDTH = 0
LATEST_VERSION = 5
BASE_URL = "https://docs.spyder-ide.org"
CONF_PY = SOURCE_DIR / "conf.py"
SCRIPT_DIR = Path("scripts").resolve()
CI = "CI" in os.environ
# ---- Helpers ---- #
@contextlib.contextmanager
def set_log_level(logger=nox.logger.logger, level=logging.CRITICAL):
"""Context manager to set a logger log level and reset it after."""
prev_level = logger.level
logger.setLevel(level)
try:
yield
finally:
logger.setLevel(prev_level)
def split_sequence(seq, *, sep="--"):
"""Split a sequence by a single separator."""
if sep not in seq:
seq.append(sep)
idx = seq.index(sep)
return seq[:idx], seq[idx + 1 :]
def process_filenames(filenames, source_dir=SOURCE_DIR):
"""If filepaths are missing the source directory, add it automatically."""
source_dir = Path(source_dir)
filenames = [
(
str(source_dir / filename)
if source_dir not in Path(filename).resolve().parents
else filename
)
for filename in filenames
]
return filenames
def extract_option_values(options, option_names, *, split_csv=False):
"""Extract particular option values from a sequence of options."""
option_values = []
remaining_options = []
if isinstance(option_names, str):
option_names = [option_names]
save_next_option = False
for option in options:
if save_next_option:
if split_csv:
option_values += list(option.strip(",").split(","))
else:
option_values.append(option)
save_next_option = False
elif option in option_names:
save_next_option = True
else:
remaining_options.append(option)
return option_values, remaining_options
def construct_sphinx_invocation(
posargs=(),
*,
builder=HTML_BUILDER,
source_dir=SOURCE_DIR,
build_dir=None,
build_options=BUILD_OPTIONS,
extra_options=(),
build_invocation=BUILD_INVOCATION,
):
"""Reusably build a Sphinx invocation string from the given arguments."""
cli_options, filenames = split_sequence(list(posargs))
filenames = process_filenames(filenames, source_dir=source_dir)
builders, cli_options = extract_option_values(
cli_options, ["--builder", "-b"], split_csv=False
)
builder = builders[-1] if builders else builder
build_dir = BUILD_DIR / builder if build_dir is None else build_dir
if CI:
build_options = list(build_options) + ["--color"]
sphinx_invocation = [
*build_invocation,
"-b",
builder,
*build_options,
*extra_options,
*cli_options,
"--",
str(source_dir),
str(build_dir),
*filenames,
]
return sphinx_invocation
# ---- Dispatch ---- #
# Workaround for Nox not (yet) supporting shared venvs
# See: https://github.com/wntrblm/nox/issues/167
@nox.session(venv_backend="virtualenv", reuse_venv=True)
def _execute(session):
"""Dispatch tasks to run in a common environment. Do not run directly."""
if not session.posargs or isinstance(session.posargs[0], str):
raise ValueError(
"Must pass a list of functions to execute as first posarg"
)
if not session.posargs or session.posargs[0] is not _install:
# pylint: disable=too-many-try-statements
try:
with set_log_level():
session.run(
*CANARY_COMMAND, include_outer_env=False, silent=True
)
except nox.command.CommandFailed:
print("Installing dependencies in isolated environment...")
_install(session, use_posargs=False)
if session.posargs:
for task in session.posargs[0]:
task(session)
# ---- Install ---- #
def _install(session, *, use_posargs=True):
"""Execute the dependency installation."""
posargs = session.posargs[1:] if use_posargs else ()
session.install("-r", "requirements.txt", *posargs)
@nox.session
def install(session):
"""Install the project's dependencies (passes through args to pip)."""
session.notify("_execute", posargs=([_install], *session.posargs))
# ---- Utility ---- #
def _build_help(session):
"""Print Sphinx --help."""
session.run(*BUILD_INVOCATION, "--help")
@nox.session(name="help")
def build_help(session):
"""Get help with the project build."""
session.notify("_execute", posargs=([_build_help],))
def _run(session):
"""Run an arbitrary command invocation in the project's venv."""
posargs = session.posargs[1:]
if not posargs:
session.error("Must pass a command invocation to run")
session.run(*posargs)
@nox.session()
def run(session):
"""Run any command."""
session.notify("_execute", posargs=([_run], *session.posargs))
def _clean(session):
"""Remove the build directory."""
print(f"Removing build directory {BUILD_DIR.as_posix()!r}")
ignore_flag = "--ignore"
should_ignore = ignore_flag in session.posargs
try:
shutil.rmtree(BUILD_DIR, ignore_errors=should_ignore)
except FileNotFoundError:
pass
except Exception:
print(f"\nError removing files; pass {ignore_flag!r} flag to ignore\n")
raise
@nox.session
def clean(session):
"""Clean build artifacts (pass -i/--ignore to ignore errors)."""
_clean(session)
# --- Set up --- #
def _setup_remotes(session):
"""Set up the origin and upstream remote repositories."""
remote_cmd = ["git", "remote"]
posargs = list(session.posargs)
https = "--https" in posargs
ssh = "--ssh" in posargs
if posargs and not isinstance(posargs[0], str):
posargs = posargs[1:]
username_args = extract_option_values(posargs, "--username")[0]
if https == ssh:
session.error("Exactly one of '--https' or '--ssh' must be passed")
# Get current origin details
origin_url_cmd = (*remote_cmd, "get-url", "origin")
origin_url = session.run(
*origin_url_cmd, external=True, silent=True, log=False
).strip()
if "https://" not in origin_url:
origin_url = origin_url.split(":")[-1]
origin_user, origin_repo = origin_url.split("/")[-2:]
if origin_repo.endswith(".git"):
origin_repo = origin_repo[:-4]
# Check username
if username_args:
origin_user = username_args[0].strip().lstrip("@")
elif origin_user.lower() == ORG_NAME.lower():
code_host = REPO_URL_HTTPS.split(":")[1].lstrip("/").split("/")[0]
session.warn(
"Origin remote currently set to upstream; should be your fork.\n"
f"To fix, fork it and pass --username <Your {code_host} username>"
)
# Set up remotes
existing_remotes = (
session.run(*remote_cmd, external=True, silent=True, log=False)
.strip()
.split("\n")
)
for remote, user_name, repo_name in (
("origin", origin_user, origin_repo),
("upstream", ORG_NAME, REPO_NAME),
):
action = "set-url" if remote in existing_remotes else "add"
fetch_url = REPO_URL_HTTPS.format(user=user_name, repo=repo_name)
session.run(*remote_cmd, action, remote, fetch_url, external=True)
ssh_url = REPO_URL_SSH.format(user=user_name, repo=repo_name)
push_url = ssh_url if ssh else fetch_url
session.run(
*remote_cmd, "set-url", "--push", remote, push_url, external=True
)
session.run("git", "fetch", "--all", external=True)
@nox.session(name="setup-remotes")
def setup_remotes(session):
"""Set up the Git remotes; pass --https or --ssh to specify URL type."""
_setup_remotes(session)
def _ignore_revs(session):
"""Configure the Git ignore revs file to the repo default."""
if not IGNORE_REVS_FILE:
return
session.run(
"git",
"config",
"blame.ignoreRevsFile",
IGNORE_REVS_FILE,
external=True,
)
@nox.session(name="ignore-revs")
def ignore_revs(session):
"""Configure Git to ignore noisy revisions."""
_ignore_revs(session)
@nox.session()
def setup(session):
"""Set up the project; pass --https or --ssh to specify Git URL type."""
session.notify(
"_execute",
posargs=(
[
_ignore_revs,
_setup_remotes,
_install_hooks,
_clean,
],
*session.posargs,
),
)
# ---- Build ---- #
def _build(session):
"""Execute the docs build."""
_docs(session)
@nox.session
def build(session):
"""Build the project."""
session.notify("_execute", posargs=([_build], *session.posargs))
def _autobuild(session):
"""Use Sphinx-Autobuild to rebuild the project and open in browser."""
_autodocs(session)
@nox.session
def autobuild(session):
"""Rebuild the project continuously as source files are changed."""
session.notify("_execute", posargs=([_autobuild], *session.posargs))
# --- Docs --- #
def _docs(session):
"""Execute the docs build."""
sphinx_invocation = construct_sphinx_invocation(
posargs=session.posargs[1:]
)
session.run(*sphinx_invocation)
@nox.session
def docs(session):
"""Build the documentation."""
session.notify("_execute", posargs=([_docs], *session.posargs))
def _autodocs(session):
"""Use Sphinx-Autobuild to rebuild the project and open in browser."""
session.install("sphinx-autobuild")
with tempfile.TemporaryDirectory() as destination:
sphinx_invocation = construct_sphinx_invocation(
posargs=session.posargs[1:],
build_dir=destination,
extra_options=["-a"],
build_invocation=[
"sphinx-autobuild",
"--port=0",
f"--watch={SOURCE_DIR}",
"--open-browser",
],
)
session.run(*sphinx_invocation)
@nox.session
def autodocs(session):
"""Rebuild the docs continuously as source files are changed."""
session.notify("_execute", posargs=([_autodocs], *session.posargs))
def _build_languages(session):
"""Build the docs in multiple languages."""
languages, posargs = extract_option_values(
session.posargs[1:], ("--lang", "--language"), split_csv=True
)
languages = languages or ALL_LANGUAGES
for language in languages:
print(f"\nBuilding {language} translation...\n")
sphinx_invocation = construct_sphinx_invocation(
posargs=posargs,
build_dir=HTML_BUILD_DIR / language,
extra_options=["-D", f"language={language}"],
)
session.run(*sphinx_invocation)
@nox.session(name="build-languages")
def build_languages(session):
"""Build the project in multiple languages (specify with '--lang')."""
session.notify("_execute", posargs=([_build_languages], *session.posargs))
@nox.session(name="build-multilanguage")
def build_multilanguage(session):
"""Build the project for deployment in all languages."""
session.notify(
"_execute", posargs=([_build, _build_languages], *session.posargs)
)
# ---- Deploy ---- #
def _serve(session=None):
"""Open the docs in a web browser."""
_serve_docs(session)
def _serve_docs(_session=None):
"""Open the docs in a web browser."""
webbrowser.open(HTML_INDEX_PATH.as_uri())
@nox.session
def serve(_session):
"""Display the built project."""
_serve()
@nox.session(name="serve-docs")
def serve_docs(_session):
"""Display the rendered documentation."""
_serve_docs()
def _prepare_multiversion(_session=None):
"""Execute the pre-deployment steps for multi-version support."""
# pylint: disable=import-outside-toplevel
# pylint: disable=import-error
sys.path.append(str(SCRIPT_DIR))
import generateredirects
import safecopy
latest_version_dir = HTML_BUILD_DIR / str(LATEST_VERSION)
shutil.copytree(
HTML_BUILD_DIR, latest_version_dir, copy_function=shutil.move
)
safecopy.copy_dir_if_not_existing(
source_dir=str(LATEST_VERSION),
target_dir="current",
base_path=HTML_BUILD_DIR,
verbose=True,
)
generateredirects.generate_redirects(
canonical_dir="current",
base_path=HTML_BUILD_DIR,
verbose=True,
base_url=BASE_URL,
)
@nox.session(name="prepare-multiversion")
def prepare_multiversion(_session):
"""Prepare the project for multi-version deployment."""
_prepare_multiversion()
@nox.session(name="build-deployment")
def build_deployment(session):
"""Build and prepare the project for production deployment."""
session.notify(
"_execute",
posargs=(
[_build, _build_languages, _prepare_multiversion],
*session.posargs,
),
)
# ---- Check ---- #
def _install_hooks(session):
"""Run pre-commit install to install the project's hooks."""
session.run(
"pre-commit",
"install",
"--hook-type",
"pre-commit",
"--hook-type",
"commit-msg",
)
@nox.session(name="install-hooks")
def install_hooks(session):
"""Install the project's pre-commit hooks."""
session.notify("_execute", posargs=([_install_hooks],))
def _uninstall_hooks(session):
"""Run pre-commit uninstall to uninstall the project's hooks."""
session.run(
"pre-commit",
"uninstall",
"--hook-type",
"pre-commit",
"--hook-type",
"commit-msg",
)
@nox.session(name="uninstall-hooks")
def uninstall_hooks(session):
"""Uninstall the project's pre-commit hooks."""
session.notify("_execute", posargs=([_uninstall_hooks],))
def _lint(session):
"""Run linting on the project via pre-commit."""
extra_options = ["--show-diff-on-failure"] if CI else []
session.run(
"pre-commit", "run", "--all", *extra_options, *session.posargs[1:]
)
@nox.session
def lint(session):
"""Lint the project."""
session.notify("_execute", posargs=([_lint], *session.posargs))
def _linkcheck(session):
"""Run Sphinx linkcheck on the docs."""
sphinx_invocation = construct_sphinx_invocation(
posargs=session.posargs[1:], builder="linkcheck"
)
session.run(*sphinx_invocation)
@nox.session
def linkcheck(session):
"""Check that links in the project are valid."""
session.notify("_execute", posargs=([_linkcheck], *session.posargs))
# ---- Translation ---- #
def _build_pot(session):
"""Build the docs with Sphinx -b gettext to extract .pot files."""
sphinx_invocation = construct_sphinx_invocation(
posargs=session.posargs[1:], builder=GETTEXT_BUILDER
)
session.run(*sphinx_invocation)
@nox.session(name="build-pot")
def build_pot(session):
"""Build the gettext .pot file translation catalogs for the project."""
session.notify("_execute", posargs=([_build_pot], *session.posargs))
def _copy_pot(_session=None):
"""Copy the built gettext .pot files to the locale directory."""
if POT_DIR.exists():
for old_file in POT_DIR.glob("*.pot"):
old_file.unlink()
else:
POT_DIR.mkdir(parents=True)
for pot_file in GETTEXT_BUILD_DIR.glob("*.pot"):
print(f"Copying {pot_file.relative_to(GETTEXT_BUILD_DIR).as_posix()}")
shutil.copy2(pot_file, POT_DIR)
@nox.session(name="copy-pot")
def copy_pot(_session):
"""Update the checked-in gettext pot files with the built ones."""
_copy_pot()
@nox.session(name="update-pot")
def update_pot(session):
"""Rebuild gettext .pot files and update the existing ones."""
session.notify(
"_execute", posargs=([_build_pot, _copy_pot], *session.posargs)
)
def _update_po(session):
"""Run sphinx-intl update to update po files from pot for languages."""
session.install("sphinx-intl")
lang_args = []
posargs = list(session.posargs[1:])
if "--all-languages" in posargs:
posargs.pop(posargs.index("--all-languages"))
for language in ALL_LANGUAGES:
lang_args += ["--language", language]
elif "-l" not in posargs and "--language" not in posargs:
lang_args += ["--language", SOURCE_LANGUAGE]
session.run(
"sphinx-intl",
"--config",
CONF_PY,
"update",
"--pot-dir",
POT_DIR,
"--line-width",
str(PO_LINE_WIDTH),
"--no-obsolete",
*lang_args,
*posargs,
)
@nox.session(name="update-po")
def update_po(session):
"""Update gettext .po from .pot (pass "-l LANG" to specify languages)."""
session.notify("_execute", posargs=([_update_po], *session.posargs))
@nox.session(name="update-po-pot")
def update_po_pot(session):
"""Rebuild & update the pot files, & update the source lang po files."""
session.notify(
"_execute",
posargs=([_build_pot, _copy_pot, _update_po], *session.posargs),
)