File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,6 @@ jobs:
105
105
106
106
# Verify they're installed
107
107
python -c "import mpl_toolkits.basemap_data; print('Data package installed')"
108
- python -c "import mpl_toolkits.basemap_data_hires; print('Hires data package installed')" || echo "Optional hires package not installed"
109
108
110
109
# Install the data packages (Windows)
111
110
- name : Install data packages (Windows)
@@ -124,18 +123,12 @@ jobs:
124
123
python -m pip install $wheel.FullName
125
124
}
126
125
127
- # Verify they're installed
128
- try {
129
- python -c "import mpl_toolkits.basemap_data; print('Data package installed')"
130
- } catch {
131
- Write-Host "Error importing basemap_data"
132
- }
126
+ # Show installed packages
127
+ python -m pip list | Select-String "mpl_toolkits.basemap"
133
128
134
- try {
135
- python -c "import mpl_toolkits.basemap_data_hires; print('Hires data package installed')"
136
- } catch {
137
- Write-Host "Optional hires package not installed"
138
- }
129
+ # Try different import paths
130
+ Write-Host "Trying to import basemap_data..."
131
+ python -c "import mpl_toolkits.basemap_data; print('mpl_toolkits.basemap_data imported successfully')"
139
132
140
133
- name : Extract sdist (Linux/macOS)
141
134
if : runner.os != 'Windows'
You can’t perform that action at this time.
0 commit comments