Skip to content

Commit

Permalink
Merge pull request #22816 from mattip/build-stuff
Browse files Browse the repository at this point in the history
BLD: redo delocate, update labeler
  • Loading branch information
mattip committed Dec 18, 2022
2 parents f589407 + 899a165 commit 1d5b339
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/labeler.yml
@@ -1,19 +1,18 @@
name: "Pull Request Labeler"
on:
pull_request_target:
types: [opened, synchronize, reopened, edited]
types: [created]

permissions: {}
contents: write # to add labels

jobs:
pr-labeler:
permissions:
contents: read # to read a configuration file
pull-requests: write # to add labels to pull requests

label_pull_request by the PR label:
runs-on: ubuntu-latest
steps:
- name: Label the PR
uses: gerrymanoim/pr-prefix-labeler@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
continue-on-error: true
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
if: github.repository == 'numpy/numpy'
3 changes: 1 addition & 2 deletions tools/wheels/cibw_before_build.sh
Expand Up @@ -42,6 +42,5 @@ if [[ $RUNNER_OS == "macOS" ]]; then
fi
source $PROJECT_DIR/tools/wheels/gfortran_utils.sh
install_gfortran
# Try a newer version of delocate that knows about /usr/local/lib
pip install git+https://github.com/matthew-brett/delocate@2b10a14b
pip install "delocate==0.10.4"
fi

0 comments on commit 1d5b339

Please sign in to comment.