Skip to content

Commit

Permalink
Merge pull request #5163 from radarhere/3.10
Browse files Browse the repository at this point in the history
Revert "skip wheels on 3.10-dev due to wheel#354"
  • Loading branch information
hugovk committed Dec 31, 2020
2 parents 01cee38 + 1af26f3 commit 01f068f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test-windows.yml
Expand Up @@ -197,16 +197,14 @@ jobs:

- name: Build wheel
id: wheel
# Skip wheels on 3.10 due to https://github.com/pypa/wheel/issues/354
if: "github.event_name == 'push' && !contains(matrix.python-version, '3.10')"
if: "github.event_name == 'push'"
run: |
for /f "tokens=3 delims=/" %%a in ("${{ github.ref }}") do echo ::set-output name=dist::dist-%%a
winbuild\\build\\build_pillow.cmd --disable-imagequant bdist_wheel
shell: cmd

- uses: actions/upload-artifact@v2
# Skip wheels on 3.10 due to https://github.com/pypa/wheel/issues/354
if: "github.event_name == 'push' && !contains(matrix.python-version, '3.10')"
if: "github.event_name == 'push'"
with:
name: ${{ steps.wheel.outputs.dist }}
path: dist\*.whl
Expand Down

0 comments on commit 01f068f

Please sign in to comment.