We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fea2a8 commit 3c94f8cCopy full SHA for 3c94f8c
.github/workflows/stable.yml
@@ -40,7 +40,8 @@ jobs:
40
fetch-depth: 0
41
- uses: actions/setup-python@v4
42
with:
43
- python-version: 3
+ # Bug in 3.11.4 tarfile extraction can break python -m build
44
+ python-version: '>=3, != 3.11.4'
45
- run: pip install --upgrade build twine
46
- name: Build sdist and wheel
47
run: python -m build
@@ -79,7 +80,8 @@ jobs:
79
80
path: archive/
81
82
83
+ # Bug in 3.11.4 tarfile extraction may break sdist installation
84
85
- name: Display Python version
86
run: python -c "import sys; print(sys.version)"
87
- name: Update pip
0 commit comments