8000 Cibuild built from sdist -> wheel by cvanelteren · Pull Request #622 · matplotlib/basemap · GitHub
[go: up one dir, main page]

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
attempt fix install windows
  • Loading branch information
cvanelteren committed Feb 26, 2025
commit 8db731f3bfdb1f4353771a190fe0241c0d32f76e
17 changes: 5 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ jobs:

# Verify they're installed
python -c "import mpl_toolkits.basemap_data; print('Data package installed')"
python -c "import mpl_toolkits.basemap_data_hires; print('Hires data package installed')" || echo "Optional hires package not installed"

# Install the data packages (Windows)
- name: Install data packages (Windows)
Expand All @@ -124,18 +123,12 @@ jobs:
python -m pip install $wheel.FullName
}

# Verify they're installed
try {
python -c "import mpl_toolkits.basemap_data; print('Data package installed')"
} catch {
Write-Host "Error importing basemap_data"
}
# Show installed packages
python -m pip list | Select-String "mpl_toolkits.basemap"

try {
python -c "import mpl_toolkits.basemap_data_hires; print('Hires data package installed')"
} catch {
Write-Host "Optional hires package not installed"
}
# Try different import paths
Write-Host "Trying to import basemap_data..."
python -c "import mpl_toolkits.basemap_data; print('mpl_toolkits.basemap_data imported successfully')"

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