Skip to content

Commit

Permalink
CI: Avoid Python 3.11.4 for unpacking sdist
Browse files Browse the repository at this point in the history
  • Loading branch information
effigies committed Sep 6, 2023
1 parent 8fea2a8 commit 3c94f8c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: 3
# Bug in 3.11.4 tarfile extraction can break python -m build
python-version: '>=3, != 3.11.4'
- run: pip install --upgrade build twine
- name: Build sdist and wheel
run: python -m build
Expand Down Expand Up @@ -79,7 +80,8 @@ jobs:
path: archive/
- uses: actions/setup-python@v4
with:
python-version: 3
# Bug in 3.11.4 tarfile extraction may break sdist installation
python-version: '>=3, != 3.11.4'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Update pip
Expand Down

0 comments on commit 3c94f8c

Please sign in to comment.