Skip to content

Commit ed1d1c9

Browse files
authored
Minor CI/CD Updates (#12)
- πŸ—οΈ switch to PEP 517 `pyproject.toml` - πŸ› 🍎: deploying under macOS now produces fat binaries (i.e., for `x86_64` and `arm64` architectures). This allows to effectively build `universal2` wheels for Python 3.8 onwards and eventually makes the wheels work on M1-based Macs - ⬆️ updated cibuildwheel to 2.3.0 - πŸ—οΈ increase max CMake version to 3.22 - πŸ”– increase version to 1.10.3
1 parent ca8f991 commit ed1d1c9

File tree

4 files changed

+34
-28
lines changed

4 files changed

+34
-28
lines changed

β€Ž.github/workflows/deploy.yml

+3-22
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,6 @@ on:
99
branches: [ master ]
1010
workflow_dispatch:
1111

12-
env:
13-
CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014
14-
CIBW_BUILD: cp3*
15-
CIBW_ENVIRONMENT: "DEPLOY=ON"
16-
CIBW_ENVIRONMENT_MACOS: "MACOSX_DEPLOYMENT_TARGET=10.15 DEPLOY=ON"
17-
CIBW_ARCHS_MACOS: "x86_64 arm64"
18-
CIBW_TEST_SKIP: "*_arm64"
19-
CIBW_SKIP: "*-win32 *-musllinux_i686 *-manylinux_i686"
20-
CIBW_BUILD_VERBOSITY: 3
21-
CIBW_TEST_COMMAND: "python -c \"from jkq import qcec\""
22-
CIBW_BEFORE_BUILD: "pip install cmake"
23-
2412
jobs:
2513
build_wheels:
2614
name: Build wheels on ${{ matrix.os }}
@@ -36,7 +24,7 @@ jobs:
3624
submodules: recursive
3725
- uses: ilammy/msvc-dev-cmd@v1
3826
- name: Build wheels
39-
uses: pypa/cibuildwheel@v2.2.2
27+
uses: pypa/cibuildwheel@v2.3.0
4028
- uses: actions/upload-artifact@v2
4129
with:
4230
path: ./wheelhouse/*.whl
@@ -48,25 +36,19 @@ jobs:
4836
- uses: actions/checkout@v2
4937
with:
5038
submodules: recursive
51-
5239
- uses: actions/setup-python@v2
5340
name: Install Python
5441
with:
5542
python-version: '3.9'
56-
5743
- name: Install dependencies
58-
run: |
59-
python -m pip install --upgrade pip setuptools wheel
60-
44+
run: pip install -q build
6145
- name: Build sdist
62-
run: python setup.py sdist
63-
46+
run: python -m build --sdist
6447
- name: Test sdist
6548
run: pip install --verbose dist/*.tar.gz
6649
env:
6750
CC: "gcc-10"
6851
CXX: "g++-10"
69-
7052
- uses: actions/upload-artifact@v2
7153
with:
7254
path: dist/*.tar.gz
@@ -80,7 +62,6 @@ jobs:
8062
with:
8163
name: artifact
8264
path: dist
83-
8465
- uses: pypa/gh-action-pypi-publish@master
8566
with:
8667
user: __token__

β€ŽCMakeLists.txt

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

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

@@ -21,6 +21,14 @@ if (DEFINED ENV{DEPLOY})
2121
message(STATUS "Setting deployment configuration to '${DEPLOY}' from environment")
2222
endif ()
2323

24+
# set deployment specific options
25+
if (DEPLOY)
26+
# build a universal macOS binary in case this is a deployment build
27+
set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64" CACHE STRING "" FORCE)
28+
# set the macOS deployment target appropriately
29+
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "" FORCE)
30+
endif ()
31+
2432
# build type settings
2533
set(default_build_type "Release")
2634
if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)

β€Žpyproject.toml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel", "cmake"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[tool.cibuildwheel]
6+
build = "cp3*"
7+
skip = "*-win32 *-musllinux_i686 *-manylinux_i686 cp3{8,9,10}-macosx_x86_64"
8+
test-skip = "*_arm64 *_universal2:arm64"
9+
test-command = "python -c \"from jkq import qcec\""
10+
environment = { DEPLOY = "ON" }
11+
build-verbosity = 3
12+
13+
[tool.cibuildwheel.linux]
14+
15+
[tool.cibuildwheel.macos]
16+
archs = "x86_64 universal2"
17+
environment = { MACOSX_DEPLOYMENT_TARGET = "10.15", DEPLOY = "ON" }
18+
19+
[tool.cibuildwheel.windows]

β€Žsetup.py

+2-4
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.2',
70+
version='1.10.3',
7171
author='Lukas Burgholzer',
7272
author_email='[email protected]',
7373
description='QCEC - A JKQ tool for Quantum Circuit Equivalence Checking',
@@ -96,7 +96,5 @@ def build_extension(self, ext):
9696
'Source': 'https://github.com/iic-jku/qcec/',
9797
'Tracker': 'https://github.com/iic-jku/qcec/issues',
9898
'Research': 'https://iic.jku.at/eda/research/quantum_verification',
99-
},
100-
python_requires='>=3.6',
101-
setup_requires=['cmake>=3.14']
99+
}
102100
)

0 commit comments

Comments
Β (0)