Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wheels: Python 3.12 #1543

Merged
merged 2 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading