forked from landlab/landlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
noxfile.py
558 lines (442 loc) · 16 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
import difflib
import glob
import json
import os
import pathlib
import shutil
import nox
from packaging.requirements import Requirement
PROJECT = "landlab"
ROOT = pathlib.Path(__file__).parent
PYTHON_VERSION = "3.12"
PATH = {
"build": ROOT / "build",
"docs": ROOT / "docs",
"nox": pathlib.Path(".nox"),
"requirements": ROOT / "requirements",
"root": ROOT,
}
@nox.session(python=PYTHON_VERSION, venv_backend="conda")
def build(session: nox.Session) -> None:
"""Build sdist and wheel dists."""
os.environ["WITH_OPENMP"] = "1"
session.log(f"CC = {os.environ.get('CC', 'NOT FOUND')}")
if session.virtualenv.venv_backend != "none":
session.install(
"build",
*("-r", PATH["requirements"] / "required.txt"),
)
session.run("python", "-m", "build", "--outdir", "./build/wheelhouse")
@nox.session(python=PYTHON_VERSION, venv_backend="conda")
def test(session: nox.Session) -> None:
"""Run the tests."""
path_args, pytest_args = pop_option(session.posargs, "--path")
if session.virtualenv.venv_backend != "none":
os.environ["WITH_OPENMP"] = "1"
session.log(f"CC = {os.environ.get('CC', 'NOT FOUND')}")
session.install(
*("-r", PATH["requirements"] / "required.txt"),
*("-r", PATH["requirements"] / "testing.txt"),
)
session.conda_install("richdem", channel=["nodefaults", "conda-forge"])
arg = path_args[0] if path_args else None
if arg is None:
session.install(".", "--no-deps")
elif os.path.isdir(arg):
session.install("landlab", f"--find-links={arg}", "--no-deps", "--no-index")
elif os.path.isfile(arg):
session.install(arg, "--no-deps")
else:
session.error("--path must be either a wheel for a wheelhouse folder")
check_package_versions(session, files=["required.txt", "testing.txt"])
args = [
"pytest",
*("-n", "auto"),
*("--cov", PROJECT),
"-vvv",
# *("--dist", "worksteal"),
] + pytest_args
if "CI" in os.environ:
args.append(f"--cov-report=xml:{ROOT.absolute()!s}/coverage.xml")
session.run(*args)
if "CI" not in os.environ:
session.run("coverage", "report", "--ignore-errors", "--show-missing")
@nox.session(name="test-notebooks", python=PYTHON_VERSION, venv_backend="conda")
def test_notebooks(session: nox.Session) -> None:
"""Run the notebooks."""
path_args, pytest_args = pop_option(session.posargs, "--path")
args = [
"pytest",
"notebooks",
"--nbmake",
"--nbmake-kernel=python3",
"--nbmake-timeout=3000",
*("-n", "auto"),
"-vvv",
] + pytest_args
if session.virtualenv.venv_backend != "none":
os.environ["WITH_OPENMP"] = "1"
session.conda_install("richdem", channel=["nodefaults", "conda-forge"])
session.install(
"git+https://github.com/mcflugen/[email protected]",
*("-r", PATH["requirements"] / "required.txt"),
*("-r", PATH["requirements"] / "testing.txt"),
*("-r", PATH["requirements"] / "notebooks.txt"),
)
arg = path_args[0] if path_args else "."
if arg is None:
session.install(".", "--no-deps")
elif os.path.isdir(arg):
session.install("landlab", f"--find-links={arg}", "--no-deps", "--no-index")
elif os.path.isfile(arg):
session.install(arg, "--no-deps")
else:
session.error("--path must be either a wheel for a wheelhouse folder")
check_package_versions(
session, files=["required.txt", "testing.txt", "notebooks.txt"]
)
session.run(*args)
def pop_option(args: list[str], opt: str):
the_rest = []
opts = []
for arg in args:
if arg.startswith(f"{opt}="):
_, value = arg.split("=", maxsplit=1)
opts += glob.glob(value)
else:
the_rest.append(arg)
return opts, the_rest
@nox.session(name="test-cli")
def test_cli(session: nox.Session) -> None:
"""Test the command line interface."""
session.install(".")
session.run("landlab", "--help")
session.run("landlab", "--version")
session.run("landlab", "index", "--help")
session.run("landlab", "list", "--help")
session.run("landlab", "provided-by", "--help")
session.run("landlab", "provides", "--help")
session.run("landlab", "used-by", "--help")
session.run("landlab", "uses", "--help")
session.run("landlab", "validate", "--help")
@nox.session
def lint(session: nox.Session) -> None:
"""Look for lint."""
skip_hooks = [] if "--no-skip" in session.posargs else ["check-manifest", "pyroma"]
if session.virtualenv.venv_backend != "none":
session.install("pre-commit")
session.run("pre-commit", "run", "--all-files", env={"SKIP": ",".join(skip_hooks)})
@nox.session
def towncrier(session: nox.Session) -> None:
"""Check that there is a news fragment."""
session.install("towncrier")
session.run("towncrier", "check", "--compare-with", "origin/master")
@nox.session(name="build-index")
def build_index(session: nox.Session) -> None:
index_file = ROOT / "docs" / "index.toml"
header = """
# This file was automatically generated with:
# nox -s build-index
""".strip()
session.install("sphinx")
session.install(".")
with open(index_file, "w") as fp:
print(header, file=fp, flush=True)
session.run(
"landlab", "--silent", "index", "components", "fields", "grids", stdout=fp
)
session.log(f"generated index at {index_file!s}")
@nox.session(name="docs-build")
def docs_build(session: nox.Session) -> None:
"""Build the docs."""
docs_build_api(session)
docs_build_notebook_index(session)
if session.virtualenv.venv_backend != "none":
session.install("-r", PATH["requirements"] / "docs.txt")
check_package_versions(session, files=["required.txt", "docs.txt"])
PATH["build"].mkdir(exist_ok=True)
session.run(
"sphinx-build",
*("-j", "auto"),
*("-b", "html"),
# "-W",
"--keep-going",
PATH["docs"] / "source",
PATH["build"] / "html",
)
session.log(f"generated docs at {PATH['build'] / 'html'!s}")
@nox.session(name="docs-build-api")
def docs_build_api(session: nox.Session) -> None:
docs_dir = PATH["docs"] / "source"
generated_dir = os.path.join(docs_dir, "generated", "api")
if session.virtualenv.venv_backend != "none":
session.install("-r", PATH["requirements"] / "docs.txt")
session.log(f"generating api docs in {generated_dir}")
session.run(
"sphinx-apidoc",
"-e",
"-force",
"--no-toc",
"--module-first",
*("-d", "2"),
f"--templatedir={docs_dir / '_templates'}",
*("-o", generated_dir),
"src/landlab",
"*.pyx",
"*.so",
)
@nox.session(name="docs-build-gallery-index", python=None)
def docs_build_notebook_index(session: nox.Session) -> None:
docs_dir = PATH["docs"] / "source"
for gallery in ("tutorials", "teaching"):
gallery_index = docs_dir / "generated" / gallery / "index.md"
os.makedirs(os.path.dirname(gallery_index), exist_ok=True)
sections = [
os.path.abspath(f.path)
for f in os.scandir(docs_dir / gallery)
if f.is_dir()
]
content = (
[
f"""\
({gallery}-gallery)=
# {gallery.title()} Gallery
"""
]
+ [
format_nbgallery(section, str(docs_dir), level=2)
for section in sorted(sections)
]
)
with open(gallery_index, "w") as fp:
print((2 * os.linesep).join(content), file=fp)
session.log(gallery_index)
def format_nbgallery(path, start, level=1):
title = pathlib.Path(path).stem.replace("_", " ").title()
p = os.path.relpath(path, start)
files = []
if glob.glob(os.path.join(path, "*.ipynb")):
files += [f"/{p}/*"]
if glob.glob(os.path.join(path, "**/*.ipynb")):
files += [f"/{p}/**"]
body = "\n".join(files)
return (
f"""\
{'#' * level} {title}
```{{nbgallery}}
:glob:
{body}
```
"""
if files
else ""
)
@nox.session(name="check-versions")
def check_package_versions(session, files=("required.txt",)):
output_lines = session.run("pip", "list", "--format=json", silent=True).splitlines()
installed_version = {
p["name"].lower(): p["version"] for p in json.loads(output_lines[0])
}
for file_ in files:
required_version = {}
with (PATH["requirements"] / file_).open() as fp:
for line in fp.readlines():
requirement = Requirement(line)
required_version[requirement.name.lower()] = requirement.specifier
mismatch = set()
for name, version in required_version.items():
if name not in installed_version or not version.contains(
installed_version[name]
):
mismatch.add(name)
session.log(f"Checking installed package versions for {file_}")
for name in sorted(required_version):
print(f"[{name}]")
print(f"requested = {str(required_version[name])!r}")
if name in installed_version:
print(f"installed = {installed_version[name]!r}")
else:
print("installed = false")
if mismatch:
session.warn(
f"There were package version mismatches for packages required in {file_}"
)
@nox.session
def locks(session: nox.Session) -> None:
"""Create lock files."""
folders = session.posargs or [".", "docs", "notebooks"]
session.install("pip-tools")
def upgrade_requirements(src, dst="requirements.txt"):
with open(dst, "wb") as fp:
session.run("pip-compile", "--upgrade", src, stdout=fp)
for folder in folders:
with session.chdir(ROOT / folder):
upgrade_requirements("requirements.in", dst="requirements.txt")
for folder in folders:
session.log(f"updated {ROOT / folder / 'requirements.txt'!s}")
# session.install("conda-lock[pip_support]")
# session.run("conda-lock", "lock", "--mamba", "--kind=lock")
@nox.session(name="sync-requirements", python=PYTHON_VERSION, venv_backend="conda")
def sync_requirements(session: nox.Session) -> None:
"""Sync requirements.in with pyproject.toml."""
with open("requirements.in", "w") as fp:
session.run(
"python",
"-c",
"""
import os, tomllib
with open("pyproject.toml", "rb") as fp:
print(os.linesep.join(sorted(tomllib.load(fp)["project"]["dependencies"])))
""",
stdout=fp,
)
@nox.session(python=False, name="check-cython-files")
def check_cython_files(session: nox.Session) -> None:
"""Find cython files for extension modules."""
cython_files = {
str(p.relative_to(PATH["root"]))
for p in pathlib.Path(PATH["root"] / "src" / "landlab").rglob("**/*.pyx")
}
print(os.linesep.join(sorted(cython_files)))
with open("cython-files.txt") as fp:
actual = [line.rstrip() for line in fp.readlines()]
diff = list(
difflib.unified_diff(
actual, sorted(cython_files), fromfile="old", tofile="new", lineterm=""
)
)
if diff:
session.error("\n".join([""] + diff + ["cython-files.txt needs updating"]))
@nox.session
def release(session):
"""Tag, build and publish a new release to PyPI."""
session.install("zest.releaser[recommended]")
session.install("zestreleaser.towncrier")
session.run("fullrelease")
@nox.session(name="publish-testpypi")
def publish_testpypi(session):
"""Publish wheelhouse/* to TestPyPI."""
session.run("twine", "check", "build/wheelhouse/*")
session.run(
"twine",
"upload",
"--skip-existing",
"--repository-url",
"https://test.pypi.org/legacy/",
"build/wheelhouse/*.tar.gz",
)
@nox.session(name="publish-pypi")
def publish_pypi(session):
"""Publish wheelhouse/* to PyPI."""
session.run("twine", "check", "build/wheelhouse/*")
session.run(
"twine",
"upload",
"--skip-existing",
"build/wheelhouse/*.tar.gz",
)
@nox.session(python=False)
def clean(session):
"""Remove all .venv's, build files and caches in the directory."""
for folder in _args_to_folders(session.posargs):
with session.chdir(folder):
shutil.rmtree("build", ignore_errors=True)
shutil.rmtree("build/wheelhouse", ignore_errors=True)
shutil.rmtree(f"src/{PROJECT}.egg-info", ignore_errors=True)
shutil.rmtree(".pytest_cache", ignore_errors=True)
shutil.rmtree(".venv", ignore_errors=True)
for pattern in ["*.py[co]", "__pycache__"]:
_clean_rglob(pattern)
@nox.session(python=False, name="clean-checkpoints")
def clean_checkpoints(session):
"""Remove jupyter notebook checkpoint files."""
for folder in _args_to_folders(session.posargs):
with session.chdir(folder):
_clean_rglob("*-checkpoint.ipynb")
_clean_rglob(".ipynb_checkpoints")
@nox.session(python=False, name="clean-docs")
def clean_docs(session: nox.Session) -> None:
"""Clean up the docs folder."""
if (PATH["build"] / "html").is_dir():
with session.chdir(PATH["build"]):
shutil.rmtree("html")
if PATH["build"].is_dir():
session.chdir(PATH["build"])
if os.path.exists("html"):
shutil.rmtree("html")
@nox.session(python=False, name="clean-ext")
def clean_ext(session: nox.Session) -> None:
"""Clean shared libraries for extension modules."""
for folder in _args_to_folders(session.posargs):
with session.chdir(folder):
_clean_rglob("*.so")
@nox.session(python=False)
def nuke(session):
"""Run all clean sessions."""
clean_checkpoints(session)
clean_docs(session)
clean(session)
clean_ext(session)
@nox.session(name="list-wheels")
def list_wheels(session):
print(os.linesep.join(_get_wheels(session)))
@nox.session(name="list-ci-matrix")
def list_ci_matrix(session):
def _os_from_wheel(name):
if "linux" in name:
return "linux"
elif "macos" in name:
return "macos"
elif "win" in name:
return "windows"
for wheel in _get_wheels(session):
print(f"- cibw-only: {wheel}")
print(f" os: {_os_from_wheel(wheel)}")
def _get_wheels(session):
platforms = session.posargs or ["linux", "macos", "windows"]
session.install("cibuildwheel")
wheels = []
for platform in platforms:
wheels += session.run(
"cibuildwheel",
"--print-build-identifiers",
"--platform",
platform,
silent=True,
).splitlines()
return wheels
def _args_to_folders(args):
return [ROOT] if not args else [pathlib.Path(f) for f in args]
def _clean_rglob(pattern):
for p in pathlib.Path(".").rglob(pattern):
if PATH["nox"] in p.parents:
continue
if p.is_dir():
p.rmdir()
else:
p.unlink()
@nox.session
def credits(session):
"""Update the various authors files."""
from landlab.cmd.authors import AuthorsConfig
config = AuthorsConfig()
with open(".mailmap", "wb") as fp:
session.run(
"landlab", "--silent", "authors", "mailmap", stdout=fp, external=True
)
contents = session.run(
"landlab",
"--silent",
"authors",
"create",
"--update-existing",
external=True,
silent=True,
)
with open(config["credits_file"], "w") as fp:
print(contents, file=fp, end="")
contents = session.run(
"landlab", "--silent", "authors", "build", silent=True, external=True
)
with open(config["authors_file"], "w") as fp:
print(contents, file=fp, end="")