Skip to content

Commit

Permalink
release 20.27.2
Browse files Browse the repository at this point in the history
Signed-off-by: Bernát Gábor <[email protected]>
  • Loading branch information
gaborbernat committed Nov 26, 2024
1 parent 6f70bf5 commit f74c000
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 21 deletions.
18 changes: 18 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ Release History

.. towncrier release notes start
v20.27.2 (2024-11-25)
---------------------

Bugfixes - 20.27.2
~~~~~~~~~~~~~~~~~~
- Upgrade embedded wheels:

* setuptools to ``75.3.0`` from ``75.2.0`` (:issue:`2798`)
- Upgrade embedded wheels:

* wheel to ``0.45.0`` from ``0.44.0``
* setuptools to ``75.5.0`` (:issue:`2800`)
- no longer forcibly echo off during windows batch activation (:issue:`2801`)
- Upgrade embedded wheels:

* setuptools to ``75.6.0`` from ``75.5.0``
* wheel to ``0.45.1`` from ``0.45.0`` (:issue:`2804`)

v20.27.1 (2024-10-28)
---------------------

Expand Down
3 changes: 0 additions & 3 deletions docs/changelog/2798.bugfix.rst

This file was deleted.

4 changes: 0 additions & 4 deletions docs/changelog/2800.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/changelog/2801.bugfix.rst

This file was deleted.

4 changes: 0 additions & 4 deletions docs/changelog/2804.bugfix.rst

This file was deleted.

Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion tasks/make_zipapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def __init__(self, into) -> None:
self.into = into
self.collected = defaultdict(lambda: defaultdict(dict))
self.pip_cmd = [str(Path(sys.executable).parent / "pip")]
self._cmd = [*self.pip_cmd, "download", "-q", "--no-deps", "--dest", str(self.into)]
self._cmd = [*self.pip_cmd, "download", "-q", "--no-deps", "--no-cache-dir", "--dest", str(self.into)]

def run(self, target, versions):
whl = self.build_sdist(target)
Expand Down
11 changes: 3 additions & 8 deletions tasks/upgrade_wheels.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def download(ver, dest, package):
"pip",
"--disable-pip-version-check",
"download",
"--no-cache-dir",
"--only-binary=:all:",
"--python-version",
ver,
Expand Down Expand Up @@ -119,14 +120,8 @@ def get_embed_wheel(distribution, for_py_version):
)
dest_target = DEST / "__init__.py"
dest_target.write_text(msg, encoding="utf-8")
subprocess.run(
[sys.executable, "-m", "ruff", "check", str(dest_target), "--fix", "--unsafe-fixes"],
check=False,
)
subprocess.run(
[sys.executable, "-m", "ruff", "format", str(dest_target), "--preview"],
check=False,
)
subprocess.run([sys.executable, "-m", "ruff", "check", str(dest_target), "--fix", "--unsafe-fixes"])
subprocess.run([sys.executable, "-m", "ruff", "format", str(dest_target), "--preview"])

raise SystemExit(outcome)

Expand Down

0 comments on commit f74c000

Please sign in to comment.