Skip to content

Commit

Permalink
Download wheels for Python 3.8.1 when skipping packages
Browse files Browse the repository at this point in the history
Downloading wheels for 3.8 only won't download the correct versions
because we require at least 3.8.1 due to bug in 3.8.0
  • Loading branch information
soininen committed Aug 30, 2024
1 parent e0d74b6 commit 922acb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-n-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: |
mkdir -p ${{ matrix.pkg }}/dist/
sed -nEe 's/name[ ]*=[ ]*"?([a-z0-9_-]+)"?/\1/p' ${{ matrix.pkg }}/pyproject.toml > pkgname
python -m pip download --no-deps --python-version 3.8 \
python -m pip download --no-deps --python-version 3.8.1 \
--dest ${{ matrix.pkg }}/dist/ $(cat pkgname)
- name: Save ${{ matrix.pkg }} wheel
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 922acb0

Please sign in to comment.