forked from pypa/packaging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
noxfile.py
338 lines (275 loc) · 9.95 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
# mypy: disallow-untyped-defs=False, disallow-untyped-calls=False
import contextlib
import datetime
import difflib
import glob
import os
import re
import shutil
import subprocess
import sys
import tempfile
import textwrap
import time
import webbrowser
from pathlib import Path
import nox
nox.options.sessions = ["lint"]
nox.options.reuse_existing_virtualenvs = True
@nox.session(
python=[
"3.8",
"3.9",
"3.10",
"3.11",
"3.12",
"3.13",
"pypy3.8",
"pypy3.9",
"pypy3.10",
]
)
def tests(session):
def coverage(*args):
session.run("python", "-m", "coverage", *args)
session.install("-r", "tests/requirements.txt")
session.install(".")
if "pypy" not in session.python:
coverage(
"run",
"--source",
"packaging",
"-m",
"pytest",
"--strict-markers",
*session.posargs,
)
coverage("report", "-m", "--fail-under", "100")
else:
# Don't do coverage tracking for PyPy, since it's SLOW.
session.run(
"python",
"-m",
"pytest",
"--capture=no",
"--strict-markers",
*session.posargs,
)
@nox.session(python="3.9")
def lint(session):
# Run the linters (via pre-commit)
session.install("pre-commit")
session.run("pre-commit", "run", "--all-files", *session.posargs)
# Check the distribution
session.install("build", "twine")
session.run("pyproject-build")
session.run("twine", "check", *glob.glob("dist/*"))
@nox.session(python="3.9")
def docs(session):
shutil.rmtree("docs/_build", ignore_errors=True)
session.install("-r", "docs/requirements.txt")
session.install("-e", ".")
variants = [
# (builder, dest)
("html", "html"),
("latex", "latex"),
("doctest", "html"),
]
for builder, dest in variants:
session.run(
"sphinx-build",
"-W",
"-b",
builder,
"-d",
"docs/_build/doctrees/" + dest,
"docs", # source directory
"docs/_build/" + dest, # output directory
)
@nox.session
def release(session):
package_name = "packaging"
version_file = Path(f"src/{package_name}/__init__.py")
changelog_file = Path("CHANGELOG.rst")
try:
release_version = _get_version_from_arguments(session.posargs)
except ValueError as e:
session.error(f"Invalid arguments: {e}")
return
# Check state of working directory and git.
_check_working_directory_state(session)
_check_git_state(session, release_version)
# Prepare for release.
_changelog_update_unreleased_title(release_version, file=changelog_file)
session.run("git", "add", str(changelog_file), external=True)
_bump(session, version=release_version, file=version_file, kind="release")
# Tag the release commit.
# fmt: off
session.run(
"git", "tag",
"-s", release_version,
"-m", f"Release {release_version}",
external=True,
)
# fmt: on
# Prepare for development.
_changelog_add_unreleased_title(file=changelog_file)
session.run("git", "add", str(changelog_file), external=True)
major, minor = map(int, release_version.split("."))
next_version = f"{major}.{minor + 1}.dev0"
_bump(session, version=next_version, file=version_file, kind="development")
# Checkout the git tag.
session.run("git", "checkout", "-q", release_version, external=True)
session.install("build", "twine")
# Build the distribution.
session.run("python", "-m", "build")
# Check what files are in dist/ for upload.
files = sorted(glob.glob("dist/*"))
expected = [
f"dist/{package_name}-{release_version}-py3-none-any.whl",
f"dist/{package_name}-{release_version}.tar.gz",
]
if files != expected:
diff_generator = difflib.context_diff(
expected, files, fromfile="expected", tofile="got", lineterm=""
)
diff = "\n".join(diff_generator)
session.error(f"Got the wrong files:\n{diff}")
# Get back out into main.
session.run("git", "checkout", "-q", "main", external=True)
# Check and upload distribution files.
session.run("twine", "check", *files)
# Push the commits and tag.
# NOTE: The following fails if pushing to the branch is not allowed. This can
# happen on GitHub, if the main branch is protected, there are required
# CI checks and "Include administrators" is enabled on the protection.
session.run("git", "push", "upstream", "main", release_version, external=True)
# Upload the distribution.
session.run("twine", "upload", *files)
# Open up the GitHub release page.
webbrowser.open("https://github.com/pypa/packaging/releases")
@nox.session
def update_licenses(session: nox.Session) -> None:
session.install("httpx")
session.run("python", "tasks/licenses.py")
# -----------------------------------------------------------------------------
# Helpers
# -----------------------------------------------------------------------------
def _get_version_from_arguments(arguments):
"""Checks the arguments passed to `nox -s release`.
Only 1 argument that looks like a version? Return the argument.
Otherwise, raise a ValueError describing what's wrong.
"""
if len(arguments) != 1:
raise ValueError("Expected exactly 1 argument")
version = arguments[0]
parts = version.split(".")
if len(parts) != 2:
# Not of the form: YY.N
raise ValueError("not of the form: YY.N")
if not all(part.isdigit() for part in parts):
# Not all segments are integers.
raise ValueError("non-integer segments")
# All is good.
return version
def _check_working_directory_state(session):
"""Check state of the working directory, prior to making the release."""
should_not_exist = ["build/", "dist/"]
bad_existing_paths = list(filter(os.path.exists, should_not_exist))
if bad_existing_paths:
session.error(f"Remove {', '.join(bad_existing_paths)} and try again")
def _check_git_state(session, version_tag):
"""Check state of the git repository, prior to making the release."""
# Ensure the upstream remote pushes to the correct URL.
allowed_upstreams = [
"[email protected]:pypa/packaging.git",
"https://github.com/pypa/packaging.git",
]
result = subprocess.run(
["git", "remote", "get-url", "--push", "upstream"],
capture_output=True,
encoding="utf-8",
)
if result.stdout.rstrip() not in allowed_upstreams:
session.error(f"git remote `upstream` is not one of {allowed_upstreams}")
# Ensure we're on main branch for cutting a release.
result = subprocess.run(
["git", "rev-parse", "--abbrev-ref", "HEAD"],
capture_output=True,
encoding="utf-8",
)
if result.stdout != "main\n":
session.error(f"Not on main branch: {result.stdout!r}")
# Ensure there are no uncommitted changes.
result = subprocess.run(
["git", "status", "--porcelain"], capture_output=True, encoding="utf-8"
)
if result.stdout:
print(result.stdout, end="", file=sys.stderr)
session.error("The working tree has uncommitted changes")
# Ensure this tag doesn't exist already.
result = subprocess.run(
["git", "rev-parse", version_tag], capture_output=True, encoding="utf-8"
)
if not result.returncode:
session.error(f"Tag already exists! {version_tag} -- {result.stdout!r}")
# Back up the current git reference, in a tag that's easy to clean up.
_release_backup_tag = "auto/release-start-" + str(int(time.time()))
session.run("git", "tag", _release_backup_tag, external=True)
def _bump(session, *, version, file, kind):
session.log(f"Bump version to {version!r}")
contents = file.read_text()
new_contents = re.sub(
'__version__ = "(.+)"', f'__version__ = "{version}"', contents
)
file.write_text(new_contents)
session.log("git commit")
subprocess.run(["git", "add", str(file)])
subprocess.run(["git", "commit", "-m", f"Bump for {kind}"])
@contextlib.contextmanager
def _replace_file(original_path):
# Create a temporary file.
fh, replacement_path = tempfile.mkstemp()
try:
with os.fdopen(fh, "w") as replacement:
with open(original_path) as original:
yield original, replacement
except Exception:
raise
else:
shutil.copymode(original_path, replacement_path)
os.remove(original_path)
shutil.move(replacement_path, original_path)
def _changelog_update_unreleased_title(version, *, file):
"""Update an "*unreleased*" heading to "{version} - {date}" """
yyyy_mm_dd = datetime.datetime.today().strftime("%Y-%m-%d")
title = f"{version} - {yyyy_mm_dd}"
with _replace_file(file) as (original, replacement):
for line in original:
if line == "*unreleased*\n":
replacement.write(f"{title}\n")
replacement.write(len(title) * "~" + "\n")
# Skip processing the next line (the heading underline for *unreleased*)
# since we already wrote the heading underline.
next(original)
else:
replacement.write(line)
def _changelog_add_unreleased_title(*, file):
with _replace_file(file) as (original, replacement):
# Duplicate first 3 lines from the original file.
for _ in range(3):
line = next(original)
replacement.write(line)
# Write the heading.
replacement.write(
textwrap.dedent(
"""\
*unreleased*
~~~~~~~~~~~~
No unreleased changes.
"""
)
)
# Duplicate all the remaining lines.
for line in original:
replacement.write(line)