Skip to content

Commit

Permalink
Update distribution.yml to see if it can build new python versions (#57)
Browse files Browse the repository at this point in the history
* Update distribution.yml

* Update build.yml

* Update distribution.yml

* Update build.yml

* Update distribution.yml

* Try this

* Update linux image

* Update conda build thingy

---------

Co-authored-by: Ian Harry <[email protected]>
  • Loading branch information
ahnitz and spxiwh authored Apr 26, 2024
1 parent de73773 commit dcb268a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
key: ${{ runner.os }}-conda-${{ matrix.python-version}}-${{ env.CACHE_NUMBER }}

- name: Configure conda
uses: conda-incubator/setup-miniconda@v2
uses: conda-incubator/setup-miniconda@v3
with:
activate-environment: test
channels: conda-forge
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/distribution.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-python@v2
- name: Install cibuildwheel
run: python -m pip install cibuildwheel==1.9.0
run: python -m pip install cibuildwheel==2.17.0

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse
Expand All @@ -27,10 +27,10 @@ jobs:
# pip is hard to link against. This symlinks it into /usr/lib so
# that it can be found.
CIBW_BEFORE_BUILD: bash tools/cibuildwheel_prep.sh
CIBW_BUILD: cp36-* cp37-* cp38-* cp39-*
CIBW_BUILD: cp36-manylinux* cp37-manylinux* cp38-manylinux* cp39-manylinux* cp310-manylinux* cp311-manylinux* cp312-manylinux*
CIBW_ARCHS: auto64
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: manylinux2014
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
CIBW_MANYLINUX_PYPY_X86_64_IMAGE: manylinux_2_28
- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
Expand Down

0 comments on commit dcb268a

Please sign in to comment.