We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8667c5 commit 166fae0Copy full SHA for 166fae0
action.yml
@@ -254,7 +254,9 @@ runs:
254
shell: pwsh
255
run: |
256
# Prerequisites: numpy is needed to build gdal_array
257
- python -m pip install -U pip setuptools wheel numpy
+ # HACK: After setuptools 80.3, the `easy_install.install_wrapper_scripts()` is removed
258
+ # from `command.easy_install`, see https://github.com/pypa/setuptools/issues/917
259
+ python -m pip install -U pip "setuptools<80.3" wheel numpy
260
261
$BUILD_DIR = New-Item -EA SilentlyContinue -ItemType directory ${{ inputs.base-dir }}/build
262
$INSTALL_DIR = New-Item -EA SilentlyContinue -ItemType directory ${{ inputs.base-dir }}/install-gdal
0 commit comments