File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change
1
+ cmake==3.20.4
2
+ ninja==1.10.0.post2
Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ build-backend = "setuptools.build_meta"
9
9
[tool .cibuildwheel ]
10
10
build = " cp39-*"
11
11
before-all = [
12
- " pipx install cmake" ,
12
+ " pipx install -f --pip-args= \" -c {project}/constraints-ci.txt \" cmake" ,
13
13
" cmake --version" ,
14
- " pipx install ninja" ,
14
+ " pipx install -f --pip-args= \" -c {project}/constraints-ci.txt \" ninja" ,
15
15
" ninja --version" ,
16
16
]
17
17
before-build = " pip install -r requirements-repair.txt"
@@ -21,15 +21,18 @@ test-command = "pytest {project}/tests"
21
21
22
22
[tool .cibuildwheel .linux ]
23
23
before-all = [
24
- " pipx install cmake" ,
24
+ " pipx install -f --pip-args= \" -c {project}/constraints-ci.txt \" cmake" ,
25
25
" cmake --version" ,
26
- " pipx install ninja" ,
26
+ " pipx install -f --pip-args= \" -c {project}/constraints-ci.txt \" ninja" ,
27
27
" ninja --version" ,
28
28
" ./scripts/manylinux-build-and-install-openssl.sh" ,
29
29
]
30
30
build-verbosity = " 1"
31
- manylinux-x86_64-image = " manylinux1"
32
- manylinux-i686-image = " manylinux1"
31
+ manylinux-x86_64-image = " quay.io/pypa/manylinux1_x86_64:2021-07-04-13bcf48"
32
+ manylinux-i686-image = " quay.io/pypa/manylinux1_i686:2021-07-04-13bcf48"
33
+ manylinux-aarch64-image = " quay.io/pypa/manylinux2014_aarch64:2021-07-04-1e3ce39"
34
+ manylinux-ppc64le-image = " quay.io/pypa/manylinux2014_ppc64le:2021-07-04-1e3ce39"
35
+ manylinux-s390x-image = " quay.io/pypa/manylinux2014_s390x:2021-07-04-1e3ce39"
33
36
34
37
[tool .cibuildwheel .linux .environment ]
35
38
SKBUILD_CONFIGURE_OPTIONS = " -DOPENSSL_ROOT_DIR:PATH=/usr/local/ssl -DCMAKE_JOB_POOL_COMPILE:STRING=compile -DCMAKE_JOB_POOL_LINK:STRING=link -DCMAKE_JOB_POOLS:STRING=compile=2;link=1"
You can’t perform that action at this time.
0 commit comments