Skip to content

Commit 4462299

Browse files
1.7.1: Use minimum supported Python to build zipapp (#1515)
* Use minimum supported Python to build zipapp Fixes #1514 * Update release.yml * Add news fragment * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Update CHANGELOG --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 551e9ce commit 4462299

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ concurrency:
1616

1717
env:
1818
default-python: "3.12"
19+
minimum-supported-python: "3.8"
1920

2021
jobs:
2122
create-tag:
@@ -98,10 +99,10 @@ jobs:
9899
uses: actions/checkout@v4
99100
with:
100101
ref: "${{ needs.create-tag.outputs.release-tag }}"
101-
- name: Set up Python ${{ env.default-python }}
102+
- name: Set up Python ${{ env.minimum-supported-python }}
102103
uses: actions/setup-python@v5
103104
with:
104-
python-version: ${{ env.default-python }}
105+
python-version: ${{ env.minimum-supported-python }}
105106
cache: "pip"
106107
- name: Install nox
107108
run: pip install nox

docs/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) for keeping t
99

1010
<!-- towncrier release notes start -->
1111

12+
## [1.7.1](https://github.com/pypa/pipx/tree/1.7.1) - 2024-08-23
13+
14+
### Bugfixes
15+
16+
- Use minimum supported Python to build zipapp in release action such that `tomli` is included in it. ([#1514](https://github.com/pypa/pipx/issues/1514))
17+
18+
1219
## [1.7.0](https://github.com/pypa/pipx/tree/1.7.0) - 2024-08-22
1320

1421
### Features

0 commit comments

Comments
 (0)