Skip to content

Commit

Permalink
Wheels: Python 3.12 (#1543)
Browse files Browse the repository at this point in the history
* Wheels: Python 3.12

Build wheels for Python 3.12.

Update cibuildwheels to version 2.16.2 (latest).

* ADIOS1 URL: with `https://`

SSL certs either outdated or weird, thus adding `-k` to
curl.
  • Loading branch information
ax3l committed Oct 20, 2023
1 parent 8398128 commit 85486ec
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Install cibuildwheel
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install cibuildwheel==2.14.1
python -m pip install cibuildwheel==2.16.2
# Hack: cmake --trace-expand
#- name: Download Patch 2/2
Expand Down
22 changes: 21 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
dist: focal
env:
- CIBW_BUILD="cp310-manylinux_aarch64 cp311-manylinux_aarch64"
- services: docker
arch: arm64
dist: focal
env:
- CIBW_BUILD="cp312-manylinux_aarch64"
- services: docker
arch: arm64
dist: focal
Expand All @@ -55,6 +60,11 @@ jobs:
dist: focal
env:
- CIBW_BUILD="cp310-musllinux_aarch64 cp311-musllinux_aarch64"
- services: docker
arch: arm64
dist: focal
env:
- CIBW_BUILD="cp312-musllinux_aarch64"

# perform a linux PPC64LE build
- services: docker
Expand All @@ -77,6 +87,11 @@ jobs:
dist: focal
env:
- CIBW_BUILD="cp311-manylinux_ppc64le"
- services: docker
arch: ppc64le
dist: focal
env:
- CIBW_BUILD="cp312-manylinux_ppc64le"
- services: docker
arch: ppc64le
dist: focal
Expand All @@ -97,6 +112,11 @@ jobs:
dist: focal
env:
- CIBW_BUILD="cp311-musllinux_ppc64le"
- services: docker
arch: ppc64le
dist: focal
env:
- CIBW_BUILD="cp312-musllinux_ppc64le"

# perform a linux S390X build
# blocked by https://github.com/GTkorvo/dill/issues/15
Expand All @@ -116,7 +136,7 @@ install:
- git clone --branch ${OPENPMD_GIT_REF} --depth 1 https://github.com/openPMD/openPMD-api.git src
- cp library_builders.sh src/.github/
- python -m pip install --upgrade pip setuptools wheel
- python -m pip install cibuildwheel==2.14.1
- python -m pip install cibuildwheel==2.16.2
# twine & cryptography: see
# https://github.com/scikit-build/cmake-python-distributions/blob/4730aeee240917303f293dffc89a8d8d5a4787c4/requirements-deploy.txt
# https://github.com/pyca/cryptography/issues/6086
Expand Down
4 changes: 2 additions & 2 deletions library_builders.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ function install_buildessentials {
function build_adios1 {
if [ -e adios1-stamp ]; then return; fi

curl -sLo adios-1.13.1.tar.gz \
http://users.nccs.gov/~pnorbert/adios-1.13.1.tar.gz
curl -k -sLo adios-1.13.1.tar.gz \
https://users.nccs.gov/~pnorbert/adios-1.13.1.tar.gz
file adios*.tar.gz
tar -xzf adios*.tar.gz
rm adios*.tar.gz
Expand Down

0 comments on commit 85486ec

Please sign in to comment.