Skip to content

Commit fe5f749

Browse files
authored
Fix RZ gate bug (#11)
* 🐧 musllinux wheels * 🐛 fix RZ gate bug by ⬆️ qfr * 🔖 update version
1 parent fe9d469 commit fe5f749

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: .github/workflows/deploy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
CIBW_ENVIRONMENT_MACOS: "MACOSX_DEPLOYMENT_TARGET=10.15 DEPLOY=ON"
1717
CIBW_ARCHS_MACOS: "x86_64 arm64"
1818
CIBW_TEST_SKIP: "*_arm64"
19-
CIBW_SKIP: "*-win32 *-manylinux_i686"
19+
CIBW_SKIP: "*-win32 *-musllinux_i686 *-manylinux_i686"
2020
CIBW_BUILD_VERBOSITY: 3
2121
CIBW_TEST_COMMAND: "python -c \"from jkq import qcec\""
2222
CIBW_BEFORE_BUILD: "pip install cmake"
@@ -36,7 +36,7 @@ jobs:
3636
submodules: recursive
3737
- uses: ilammy/msvc-dev-cmd@v1
3838
- name: Build wheels
39-
uses: pypa/cibuildwheel@v2.1.3
39+
uses: pypa/cibuildwheel@v2.2.2
4040
- uses: actions/upload-artifact@v2
4141
with:
4242
path: ./wheelhouse/*.whl

Diff for: CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14...3.21)
22

33
project(qcec
44
LANGUAGES CXX
5-
VERSION 1.10.1
5+
VERSION 1.10.2
66
DESCRIPTION "QCEC - A JKQ tool for Quantum Circuit Equivalence Checking"
77
)
88

Diff for: extern/qfr

Submodule qfr updated from cf7d866 to d60362d

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def build_extension(self, ext):
6767

6868
setup(
6969
name='jkq.qcec',
70-
version='1.10.1',
70+
version='1.10.2',
7171
author='Lukas Burgholzer',
7272
author_email='[email protected]',
7373
description='QCEC - A JKQ tool for Quantum Circuit Equivalence Checking',

0 commit comments

Comments
 (0)