- Notifications
You must be signed in to change notification settings - Fork 3.1k
/
Copy pathnoxfile.py
416 lines (337 loc) · 14.1 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
"""Automation using nox."""
importargparse
importglob
importos
importshutil
importsys
frompathlibimportPath
fromtypingimportIterator, List, Tuple
importnox
# fmt: off
sys.path.append(".")
fromtoolsimportrelease# isort:skip
sys.path.pop()
# fmt: on
nox.options.reuse_existing_virtualenvs=True
nox.options.sessions= ["lint"]
nox.needs_version=">=2024.03.02"# for session.run_install()
LOCATIONS= {
"common-wheels": "tests/data/common_wheels",
"protected-pip": "tools/protected_pip.py",
}
REQUIREMENTS= {
"docs": "docs/requirements.txt",
"tests": "tests/requirements.txt",
"common-wheels": "tests/requirements-common_wheels.txt",
}
AUTHORS_FILE="AUTHORS.txt"
VERSION_FILE="src/pip/__init__.py"
defrun_with_protected_pip(session: nox.Session, *arguments: str) ->None:
"""Do a session.run("pip", *arguments), using a "protected" pip.
This invokes a wrapper script, that forwards calls to original virtualenv
(stable) version, and not the code being tested. This ensures pip being
used is not the code being tested.
"""
env= {"VIRTUAL_ENV": session.virtualenv.location}
command= ("python", LOCATIONS["protected-pip"]) +arguments
# By using run_install(), these installation steps can be skipped when -R
# or --no-install is passed.
session.run_install(*command, env=env, silent=True)
defshould_update_common_wheels() ->bool:
# If the cache hasn't been created, create it.
ifnotos.path.exists(LOCATIONS["common-wheels"]):
returnTrue
# If the requirements was updated after cache, we'll repopulate it.
cache_last_populated_at=os.path.getmtime(LOCATIONS["common-wheels"])
requirements_updated_at=os.path.getmtime(REQUIREMENTS["common-wheels"])
need_to_repopulate=requirements_updated_at>cache_last_populated_at
# Clear the stale cache.
ifneed_to_repopulate:
shutil.rmtree(LOCATIONS["common-wheels"], ignore_errors=True)
returnneed_to_repopulate
# -----------------------------------------------------------------------------
# Development Commands
# -----------------------------------------------------------------------------
@nox.session(python=["3.9", "3.10", "3.11", "3.12", "3.13", "pypy3"])
deftest(session: nox.Session) ->None:
# Get the common wheels.
ifshould_update_common_wheels():
# fmt: off
run_with_protected_pip(
session,
"wheel",
"-w", LOCATIONS["common-wheels"],
"-r", REQUIREMENTS["common-wheels"],
)
# fmt: on
else:
msg=f"Reusing existing common-wheels at {LOCATIONS['common-wheels']}."
session.log(msg)
# Build source distribution
# HACK: we want to skip building and installing pip when nox's --no-install
# flag is given (to save time when running tests back to back with different
# arguments), but unfortunately nox does not expose this configuration state
# yet. https://github.com/wntrblm/nox/issues/710
no_install="-R"insys.argvor"--no-install"insys.argv
sdist_dir=os.path.join(session.virtualenv.location, "sdist")
ifnotno_installandos.path.exists(sdist_dir):
shutil.rmtree(sdist_dir, ignore_errors=True)
run_with_protected_pip(session, "install", "build")
# build uses the pip present in the outer environment (aka the nox environment)
# as an optimization. This will crash if the last test run installed a broken
# pip, so uninstall pip to force build to provision a known good version of pip.
run_with_protected_pip(session, "uninstall", "pip", "-y")
# fmt: off
session.run_install(
"python", "-I", "-m", "build", "--sdist", "--outdir", sdist_dir,
silent=True,
)
# fmt: on
generated_files=os.listdir(sdist_dir)
assertlen(generated_files) ==1
generated_sdist=os.path.join(sdist_dir, generated_files[0])
# Install source distribution
run_with_protected_pip(session, "install", generated_sdist)
# Install test dependencies
run_with_protected_pip(session, "install", "-r", REQUIREMENTS["tests"])
# Parallelize tests as much as possible, by default.
arguments=session.posargsor ["-n", "auto"]
# Run the tests
# LC_CTYPE is set to get UTF-8 output inside of the subprocesses that our
# tests use.
session.run(
"pytest",
*arguments,
env={
"LC_CTYPE": "en_US.UTF-8",
},
)
@nox.session
defdocs(session: nox.Session) ->None:
session.install("-r", REQUIREMENTS["docs"])
defget_sphinx_build_command(kind: str) ->List[str]:
# Having the conf.py in the docs/html is weird but needed because we
# can not use a different configuration directory vs source directory
# on RTD currently. So, we'll pass "-c docs/html" here.
# See https://github.com/rtfd/readthedocs.org/issues/1543.
# fmt: off
return [
"sphinx-build",
"--keep-going",
"--tag", kind,
"-W",
"-c", "docs/html", # see note above
"-d", "docs/build/doctrees/"+kind,
"-b", kind,
"--jobs", "auto",
"docs/"+kind,
"docs/build/"+kind,
]
# fmt: on
session.run(*get_sphinx_build_command("html"))
session.run(*get_sphinx_build_command("man"))
@nox.session(name="docs-live")
defdocs_live(session: nox.Session) ->None:
session.install("-r", REQUIREMENTS["docs"], "sphinx-autobuild")
session.run(
"sphinx-autobuild",
"-d=docs/build/doctrees/livehtml",
"-b=dirhtml",
"docs/html",
"docs/build/livehtml",
"--jobs=auto",
*session.posargs,
)
@nox.session
deflint(session: nox.Session) ->None:
session.install("pre-commit")
ifsession.posargs:
args=session.posargs+ ["--all-files"]
else:
args= ["--all-files", "--show-diff-on-failure"]
session.run("pre-commit", "run", *args)
# NOTE: This session will COMMIT upgrades to vendored libraries.
# You should therefore not run it directly against `main`. If you
# do (assuming you started with a clean main), you can run:
#
# git checkout -b vendoring-updates
# git checkout main
# git reset --hard origin/main
@nox.session
defvendoring(session: nox.Session) ->None:
# Ensure that the session Python is running 3.10+
# so that truststore can be installed correctly.
session.run(
"python", "-c", "import sys; sys.exit(1 if sys.version_info < (3, 10) else 0)"
)
parser=argparse.ArgumentParser(prog="nox -s vendoring")
parser.add_argument("--upgrade-all", action="store_true")
parser.add_argument("--upgrade", action="append", default=[])
parser.add_argument("--skip", action="append", default=[])
args=parser.parse_args(session.posargs)
session.install("vendoring~=1.2.0")
ifnot (args.upgradeorargs.upgrade_all):
session.run("vendoring", "sync", "-v")
return
defpinned_requirements(path: Path) ->Iterator[Tuple[str, str]]:
forlineinpath.read_text().splitlines(keepends=False):
one, sep, two=line.partition("==")
ifnotsep:
continue
name=one.strip()
version=two.split("#", 1)[0].strip()
ifnameandversion:
yieldname, version
vendor_txt=Path("src/pip/_vendor/vendor.txt")
forname, old_versioninpinned_requirements(vendor_txt):
ifnameinargs.skip:
continue
ifargs.upgradeandnamenotinargs.upgrade:
continue
# update requirements.txt
session.run("vendoring", "update", ".", name)
# get the updated version
new_version=old_version
forinner_name, inner_versioninpinned_requirements(vendor_txt):
ifinner_name==name:
# this is a dedicated assignment, to make lint happy
new_version=inner_version
break
else:
session.error(f"Could not find {name} in {vendor_txt}")
# check if the version changed.
ifnew_version==old_version:
continue# no change, nothing more to do here.
# synchronize the contents
session.run("vendoring", "sync", ".")
# Determine the correct message
message=f"Upgrade {name} to {new_version}"
# Write our news fragment
news_file=Path("news") / (name+".vendor.rst")
news_file.write_text(message+"\n") # "\n" appeases end-of-line-fixer
# Commit the changes
release.commit_file(session, ".", message=message)
@nox.session
defcoverage(session: nox.Session) ->None:
# Install source distribution
run_with_protected_pip(session, "install", ".")
# Install test dependencies
run_with_protected_pip(session, "install", "-r", REQUIREMENTS["tests"])
ifnotos.path.exists(".coverage-output"):
os.mkdir(".coverage-output")
session.run(
"pytest",
"--cov=pip",
"--cov-config=./setup.cfg",
*session.posargs,
env={
"COVERAGE_OUTPUT_DIR": "./.coverage-output",
"COVERAGE_PROCESS_START": os.fsdecode(Path("setup.cfg").resolve()),
},
)
# -----------------------------------------------------------------------------
# Release Commands
# -----------------------------------------------------------------------------
@nox.session(name="prepare-release")
defprepare_release(session: nox.Session) ->None:
version=release.get_version_from_arguments(session)
ifnotversion:
session.error("Usage: nox -s prepare-release -- <version>")
session.log("# Ensure nothing is staged")
ifrelease.modified_files_in_git("--staged"):
session.error("There are files staged in git")
session.log(f"# Updating {AUTHORS_FILE}")
release.generate_authors(AUTHORS_FILE)
ifrelease.modified_files_in_git():
release.commit_file(session, AUTHORS_FILE, message=f"Update {AUTHORS_FILE}")
else:
session.log(f"# No changes to {AUTHORS_FILE}")
session.log("# Generating NEWS")
release.generate_news(session, version)
ifsys.stdin.isatty():
input(
"Please review the NEWS file, make necessary edits, and stage them.\n"
"Press Enter to continue..."
)
session.log(f"# Bumping for release {version}")
release.update_version_file(version, VERSION_FILE)
release.commit_file(session, VERSION_FILE, message="Bump for release")
session.log("# Tagging release")
release.create_git_tag(session, version, message=f"Release {version}")
session.log("# Bumping for development")
next_dev_version=release.get_next_development_version(version)
release.update_version_file(next_dev_version, VERSION_FILE)
release.commit_file(session, VERSION_FILE, message="Bump for development")
@nox.session(name="build-release")
defbuild_release(session: nox.Session) ->None:
version=release.get_version_from_arguments(session)
ifnotversion:
session.error("Usage: nox -s build-release -- YY.N[.P]")
session.log("# Ensure no files in dist/")
ifrelease.have_files_in_folder("dist"):
session.error(
"There are files in dist/. Remove them and try again. "
"You can use `git clean -fxdi -- dist` command to do this"
)
session.log("# Install dependencies")
session.install("twine")
withrelease.isolated_temporary_checkout(session, version) asbuild_dir:
session.log(
"# Start the build in an isolated, "
f"temporary Git checkout at {build_dir!s}",
)
withrelease.workdir(session, build_dir):
tmp_dists=build_dists(session)
tmp_dist_paths= (build_dir/pforpintmp_dists)
session.log(f"# Copying dists from {build_dir}")
os.makedirs("dist", exist_ok=True)
fordist, finalinzip(tmp_dist_paths, tmp_dists):
session.log(f"# Copying {dist} to {final}")
shutil.copy(dist, final)
defbuild_dists(session: nox.Session) ->List[str]:
"""Return dists with valid metadata."""
session.log(
"# Check if there's any Git-untracked files before building the wheel",
)
has_forbidden_git_untracked_files=any(
# Don't report the environment this session is running in
notuntracked_file.startswith(".nox/build-release/")
foruntracked_fileinrelease.get_git_untracked_files()
)
ifhas_forbidden_git_untracked_files:
session.error(
"There are untracked files in the working directory. "
"Remove them and try again",
)
session.log("# Build distributions")
session.run("python", "build-project/build-project.py", silent=True)
produced_dists=glob.glob("dist/*")
session.log(f"# Verify distributions: {', '.join(produced_dists)}")
session.run("twine", "check", "--strict", *produced_dists, silent=True)
returnproduced_dists
@nox.session(name="upload-release")
defupload_release(session: nox.Session) ->None:
version=release.get_version_from_arguments(session)
ifnotversion:
session.error("Usage: nox -s upload-release -- YY.N[.P]")
session.log("# Install dependencies")
session.install("twine")
distribution_files=glob.glob("dist/*")
session.log(f"# Distribution files: {distribution_files}")
# Sanity check: Make sure there's 2 distribution files.
count=len(distribution_files)
ifcount!=2:
session.error(
f"Expected 2 distribution files for upload, got {count}. "
f"Remove dist/ and run 'nox -s build-release -- {version}'"
)
# Sanity check: Make sure the files are correctly named.
distfile_names= (os.path.basename(fn) forfnindistribution_files)
expected_distribution_files= [
f"pip-{version}-py3-none-any.whl",
f"pip-{version}.tar.gz",
]
ifsorted(distfile_names) !=sorted(expected_distribution_files):
session.error(f"Distribution files do not seem to be for {version} release.")
session.log("# Upload distributions")
session.run("twine", "upload", *distribution_files)