[go: up one dir, main page]

Skip to content

Commit

Permalink
1.7.1: Use minimum supported Python to build zipapp (#1515)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
dukecat0 and pre-commit-ci[bot] authored Aug 23, 2024
1 parent 551e9ce commit 4462299
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ concurrency:

env:
default-python: "3.12"
minimum-supported-python: "3.8"

jobs:
create-tag:
Expand Down Expand Up @@ -98,10 +99,10 @@ jobs:
uses: actions/checkout@v4
with:
ref: "${{ needs.create-tag.outputs.release-tag }}"
- name: Set up Python ${{ env.default-python }}
- name: Set up Python ${{ env.minimum-supported-python }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.default-python }}
python-version: ${{ env.minimum-supported-python }}
cache: "pip"
- name: Install nox
run: pip install nox
Expand Down
7 changes: 7 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) for keeping t

<!-- towncrier release notes start -->

## [1.7.1](https://github.com/pypa/pipx/tree/1.7.1) - 2024-08-23

### Bugfixes

- 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))


## [1.7.0](https://github.com/pypa/pipx/tree/1.7.0) - 2024-08-22

### Features
Expand Down

0 comments on commit 4462299

Please sign in to comment.