File tree 4 files changed +34
-28
lines changed
4 files changed +34
-28
lines changed Original file line number Diff line number Diff line change 9
9
branches : [ master ]
10
10
workflow_dispatch :
11
11
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
-
24
12
jobs :
25
13
build_wheels :
26
14
name : Build wheels on ${{ matrix.os }}
36
24
submodules : recursive
37
25
- uses : ilammy/msvc-dev-cmd@v1
38
26
- name : Build wheels
39
- uses : pypa/cibuildwheel@v2.2.2
27
+ uses : pypa/cibuildwheel@v2.3.0
40
28
- uses : actions/upload-artifact@v2
41
29
with :
42
30
path : ./wheelhouse/*.whl
@@ -48,25 +36,19 @@ jobs:
48
36
- uses : actions/checkout@v2
49
37
with :
50
38
submodules : recursive
51
-
52
39
- uses : actions/setup-python@v2
53
40
name : Install Python
54
41
with :
55
42
python-version : ' 3.9'
56
-
57
43
- name : Install dependencies
58
- run : |
59
- python -m pip install --upgrade pip setuptools wheel
60
-
44
+ run : pip install -q build
61
45
- name : Build sdist
62
- run : python setup.py sdist
63
-
46
+ run : python -m build --sdist
64
47
- name : Test sdist
65
48
run : pip install --verbose dist/*.tar.gz
66
49
env :
67
50
CC : " gcc-10"
68
51
CXX : " g++-10"
69
-
70
52
- uses : actions/upload-artifact@v2
71
53
with :
72
54
path : dist/*.tar.gz
80
62
with :
81
63
name : artifact
82
64
path : dist
83
-
84
65
- uses : pypa/gh-action-pypi-publish@master
85
66
with :
86
67
user : __token__
Original file line number Diff line number Diff line change 1
- cmake_minimum_required (VERSION 3.14...3.21 )
1
+ cmake_minimum_required (VERSION 3.14...3.22 )
2
2
3
3
project (qcec
4
4
LANGUAGES CXX
5
- VERSION 1.10.2
5
+ VERSION 1.10.3
6
6
DESCRIPTION "QCEC - A JKQ tool for Quantum Circuit Equivalence Checking"
7
7
)
8
8
@@ -21,6 +21,14 @@ if (DEFINED ENV{DEPLOY})
21
21
message (STATUS "Setting deployment configuration to '${DEPLOY} ' from environment" )
22
22
endif ()
23
23
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
+
24
32
# build type settings
25
33
set (default_build_type "Release" )
26
34
if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES )
Original file line number Diff line number Diff line change
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 ]
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ def build_extension(self, ext):
67
67
68
68
setup (
69
69
name = 'jkq.qcec' ,
70
- version = '1.10.2 ' ,
70
+ version = '1.10.3 ' ,
71
71
author = 'Lukas Burgholzer' ,
72
72
73
73
description = 'QCEC - A JKQ tool for Quantum Circuit Equivalence Checking' ,
@@ -96,7 +96,5 @@ def build_extension(self, ext):
96
96
'Source' : 'https://github.com/iic-jku/qcec/' ,
97
97
'Tracker' : 'https://github.com/iic-jku/qcec/issues' ,
98
98
'Research' : 'https://iic.jku.at/eda/research/quantum_verification' ,
99
- },
100
- python_requires = '>=3.6' ,
101
- setup_requires = ['cmake>=3.14' ]
99
+ }
102
100
)
You canβt perform that action at this time.
0 commit comments