Skip to content

Commit

Permalink
cibuildwheel==2.19.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tnipen committed Jul 7, 2024
1 parent a7c069a commit 3b4de02
Showing 1 changed file with 2 additions and 21 deletions.
23 changes: 2 additions & 21 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.13.1
run: python -m pip install cibuildwheel==2.19.2

- uses: actions/download-artifact@v2
with:
Expand All @@ -51,6 +51,7 @@ jobs:
# Use boost 1_72, since this allows c++11. We need c++11, since manylinux2014 only has gcc 4.8
# Can't use boost 1.53 (default on linux) because it doesn't have rtree functionality
# CIBW_BUILD: cp36-manylinux_x86_64 cp36-win_amd64 cp36-macosx_x86_64
CIBW_BUILD: cp36-manylinux_x86_64
# CIBW_BUILD: cp310-macosx_x86_64
# PyPy compilation on MACOS doesn't work, possibly since there is no available numpy release for this
# Armadillo isn't available for i687 on Centos 7, making compilation more complicated
Expand Down Expand Up @@ -83,23 +84,3 @@ jobs:
with:
name: wheels
path: ./wheelhouse/*.whl


pypi-publish:
needs: build_wheels
name: Upload release to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: wheels
path: wheelhouse
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: wheelhouse/
name: pypi
user: __token__
password: ${{ secrets.PYPI_TOKEN }}
url: https://pypi.org/p/gridpp
skip_existing: true

0 comments on commit 3b4de02

Please sign in to comment.