Skip to content

Commit

Permalink
fixes to template yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
joemarshall committed Aug 12, 2024
1 parent 643f903 commit afbd76a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/make_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ jobs:
run: |
# get arrow version and wheel name and make metafile
ARROW_WHEEL=$(basename pyarrow/dist/*.whl)
ARROW_VERSION=$(wheel-filename ${ARROW_WHEEL} | jq '.version')
ARROW_VERSION=$(wheel-filename ${ARROW_WHEEL} | jq -r '.version')
ARROW_SHA256=$(sha256sum pyarrow/dist/*.whl | cut -d ' ' -f 1)
echo ARROW_WHEEL=${ARROW_WHEEL}>>$GITHUB_ENV
echo ARROW_VERSION=${ARROW_VERSION}>>$GITHUB_ENV
echo ARROW_SHA256=${ARROW_SHA256}>>$GITHUB_ENV
echo ARROW_RELEASE_URL=https://github.com/${{ github.repository_owner }}/${{ github.repository }}/releases/download/${{ inputs.pyodide }}/${ARROW_WHEEL}
sed "s:#RELEASE_URL#:${AARROW_RELEASE_URL}:g;s:#RELEASE_SHA256#:${ARROW_SHA256}:g;s:#RELEASE_VERSION#:${ARROW_VERSION}:g;"\
sed "s:#RELEASE_URL#:${ARROW_RELEASE_URL}:g;s:#RELEASE_SHA256#:${ARROW_SHA256}:g;s:#RELEASE_VERSION#:${ARROW_VERSION}:g;"\
< pyarrow/_meta_built_template.yaml > pyarrow/dist/${ARROW_WHEEL}.yaml
- name: Upload the build artifacts for build debugging purposes
uses: actions/upload-artifact@v4
Expand Down
2 changes: 0 additions & 2 deletions pyarrow/_meta_built_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ requirements:
- numpy
- pandas
- pyodide-unix-timezones
host:
- numpy
extra:
recipe-maintainers:
- joemarshall

0 comments on commit afbd76a

Please sign in to comment.