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

Update cibuildwheel version #654

Draft
wants to merge 11 commits into
base: master
Choose a base branch
from
Draft
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/wheel_linux_aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
cp -rf ${{ github.workspace }}/Kokkos_install/${{ matrix.exec_model }}/* Kokkos/

- name: Install cibuildwheel
run: python -m pip install cibuildwheel~=2.16.0
run: python -m pip install cibuildwheel~=2.17.0

- uses: docker/setup-qemu-action@v2
name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel_linux_ppc64le.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
cp -rf ${{ github.workspace }}/Kokkos_install/${{ matrix.exec_model }}/* Kokkos/

- name: Install cibuildwheel
run: python -m pip install cibuildwheel~=2.16.0
run: python -m pip install cibuildwheel~=2.17.0

- uses: docker/setup-qemu-action@v2
name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel_linux_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
yum update -y && yum install -y docker

- name: Install cibuildwheel
run: python3.9 -m pip install cibuildwheel~=2.16.0
run: python3.9 -m pip install cibuildwheel~=2.17.0

- name: Build wheels
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/wheel_linux_x86_64_cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
run: |
# Reduce wait time for repos not responding
cat /etc/yum.conf | sed "s/\[main\]/\[main\]\ntimeout=5/g" > /etc/yum.conf
yum update -y && yum install -y docker
yum update -y && yum install -y cmake docker ninja-build

- name: Install cibuildwheel
run: python3.9 -m pip install cibuildwheel~=2.16.0
run: python3.9 -m pip install cibuildwheel~=2.17.0

- name: Build wheels
env:
Expand All @@ -71,7 +71,7 @@ jobs:
# Python build settings
CIBW_BEFORE_BUILD: |
cat /etc/yum.conf | sed "s/\[main\]/\[main\]\ntimeout=5/g" > /etc/yum.conf
python -m pip install ninja cmake~=3.24.3 auditwheel~=5.0 custatevec-cu${{ matrix.cuda_version }}
python -m pip install ninja cmake~=3.24.0 custatevec-cu${{ matrix.cuda_version }}
yum clean all -y
yum install centos-release-scl-rh -y
yum install devtoolset-11-gcc-c++ -y
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel_macos_arm64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
python-version: '3.9'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel~=2.16.0
run: python -m pip install cibuildwheel~=2.17.0

- name: Build wheels
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel_macos_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
python-version: '3.9'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel~=2.16.0
run: python -m pip install cibuildwheel~=2.17.0

- name: Build wheels
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheel_win_x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
-Destination "D:\a\Lightning-Unification\Lightning-Unification\Kokkos" -Recurse -Force

- name: Install cibuildwheel
run: python -m pip install cibuildwheel~=2.16.0 wheel
run: python -m pip install cibuildwheel~=2.17.0 wheel

- name: Build wheels
env:
Expand Down
2 changes: 1 addition & 1 deletion pennylane_lightning/core/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "0.36.0-dev15"
__version__ = "0.36.0-dev16"
Loading