Skip to content

Commit 1843355

Browse files
committed
Revert "CI: Avoid Python 3.11.4 for unpacking sdist"
This reverts commit 3c94f8c. This was not the correct way to specify a Python version, and I can't be bothered to figure out the correct way, as this issue will be fixed in build 1.0.1. See bug report pypa/build#674 and fix pypa/build#675
1 parent 3c94f8c commit 1843355

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/stable.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ jobs:
4040
fetch-depth: 0
4141
- uses: actions/setup-python@v4
4242
with:
43-
# Bug in 3.11.4 tarfile extraction can break python -m build
44-
python-version: '>=3, != 3.11.4'
43+
python-version: 3
4544
- run: pip install --upgrade build twine
4645
- name: Build sdist and wheel
4746
run: python -m build
@@ -80,8 +79,7 @@ jobs:
8079
path: archive/
8180
- uses: actions/setup-python@v4
8281
with:
83-
# Bug in 3.11.4 tarfile extraction may break sdist installation
84-
python-version: '>=3, != 3.11.4'
82+
python-version: 3
8583
- name: Display Python version
8684
run: python -c "import sys; print(sys.version)"
8785
- name: Update pip

0 commit comments

Comments
 (0)