Build SDist and wheel.
(session: nox.Session)
| 105 | |
| 106 | @nox.session(reuse_venv=True, default=False) |
| 107 | def build(session: nox.Session) -> None: |
| 108 | """ |
| 109 | Build SDist and wheel. |
| 110 | """ |
| 111 | |
| 112 | session.install("build") |
| 113 | session.log("Building normal files") |
| 114 | session.run("python", "-m", "build", *session.posargs) |
| 115 | |
| 116 | |
| 117 | @contextlib.contextmanager |