Skip to content

Commit f74c000

Browse files
committed
release 20.27.2
Signed-off-by: Bernát Gábor <[email protected]>
1 parent 6f70bf5 commit f74c000

File tree

9 files changed

+22
-21
lines changed

9 files changed

+22
-21
lines changed

docs/changelog.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ Release History
55

66
.. towncrier release notes start
77
8+
v20.27.2 (2024-11-25)
9+
---------------------
10+
11+
Bugfixes - 20.27.2
12+
~~~~~~~~~~~~~~~~~~
13+
- Upgrade embedded wheels:
14+
15+
* setuptools to ``75.3.0`` from ``75.2.0`` (:issue:`2798`)
16+
- Upgrade embedded wheels:
17+
18+
* wheel to ``0.45.0`` from ``0.44.0``
19+
* setuptools to ``75.5.0`` (:issue:`2800`)
20+
- no longer forcibly echo off during windows batch activation (:issue:`2801`)
21+
- Upgrade embedded wheels:
22+
23+
* setuptools to ``75.6.0`` from ``75.5.0``
24+
* wheel to ``0.45.1`` from ``0.45.0`` (:issue:`2804`)
25+
826
v20.27.1 (2024-10-28)
927
---------------------
1028

docs/changelog/2798.bugfix.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/changelog/2800.bugfix.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.

docs/changelog/2801.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/changelog/2804.bugfix.rst

Lines changed: 0 additions & 4 deletions
This file was deleted.
Binary file not shown.
Binary file not shown.

tasks/make_zipapp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def __init__(self, into) -> None:
9393
self.into = into
9494
self.collected = defaultdict(lambda: defaultdict(dict))
9595
self.pip_cmd = [str(Path(sys.executable).parent / "pip")]
96-
self._cmd = [*self.pip_cmd, "download", "-q", "--no-deps", "--dest", str(self.into)]
96+
self._cmd = [*self.pip_cmd, "download", "-q", "--no-deps", "--no-cache-dir", "--dest", str(self.into)]
9797

9898
def run(self, target, versions):
9999
whl = self.build_sdist(target)

tasks/upgrade_wheels.py

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ def download(ver, dest, package):
2727
"pip",
2828
"--disable-pip-version-check",
2929
"download",
30+
"--no-cache-dir",
3031
"--only-binary=:all:",
3132
"--python-version",
3233
ver,
@@ -119,14 +120,8 @@ def get_embed_wheel(distribution, for_py_version):
119120
)
120121
dest_target = DEST / "__init__.py"
121122
dest_target.write_text(msg, encoding="utf-8")
122-
subprocess.run(
123-
[sys.executable, "-m", "ruff", "check", str(dest_target), "--fix", "--unsafe-fixes"],
124-
check=False,
125-
)
126-
subprocess.run(
127-
[sys.executable, "-m", "ruff", "format", str(dest_target), "--preview"],
128-
check=False,
129-
)
123+
subprocess.run([sys.executable, "-m", "ruff", "check", str(dest_target), "--fix", "--unsafe-fixes"])
124+
subprocess.run([sys.executable, "-m", "ruff", "format", str(dest_target), "--preview"])
130125

131126
raise SystemExit(outcome)
132127

0 commit comments

Comments
 (0)