Skip to content

Cibuild built from sdist -> wheel #622

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jun 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Move download basemap sdist step right before extraction
  • Loading branch information
molinav committed Jun 12, 2025
commit 2dccf0250f878b06500f784ebb049fb8c2e3b1f2
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,6 @@ jobs:
with:
python-version: "3.9"

- name: Download basemap sdist
uses: actions/download-artifact@v4
with:
name: basemap-sdist
path: ./sdist/

- name: Download data packages
uses: actions/download-artifact@v4
with:
Expand Down Expand Up @@ -129,6 +123,12 @@ jobs:
Write-Host "Trying to import basemap_data..."
python -c "import mpl_toolkits.basemap_data; print('mpl_toolkits.basemap_data imported successfully')"

- name: Download basemap sdist
uses: actions/download-artifact@v4
with:
name: basemap-sdist
path: ./sdist/

- name: Extract sdist (Linux/macOS)
if: runner.os != 'Windows'
shell: bash
Expand Down