Skip to content

Commit 84705f8

Browse files
committed
debug
1 parent 549f58b commit 84705f8

File tree

2 files changed

+25
-16
lines changed

2 files changed

+25
-16
lines changed

.github/workflows/wheels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ jobs:
112112
PYXMLSEC_LIBXML2_VERSION: 2.13.5
113113
PYXMLSEC_LIBXSLT_VERSION: 1.1.42
114114
PYXMLSEC_XMLSEC1_VERSION: 1.3.7
115+
PYXMLSEC_OPENSSL_VERSION: 3.4.1
115116

116117
steps:
117118
- name: Check out the repo

pyproject.toml

Lines changed: 24 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,29 @@ known_first_party = ['xmlsec']
4444
known_third_party = ['lxml', 'pytest', '_pytest', 'hypothesis']
4545

4646
[build-system]
47-
requires = ['setuptools>=42', 'wheel', 'setuptools_scm[toml]>=3.4', "pkgconfig>=1.5.1", "lxml>=3.8, !=4.7.0"]
47+
requires = [
48+
'setuptools>=42',
49+
'wheel',
50+
'setuptools_scm[toml]>=3.4',
51+
"pkgconfig>=1.5.1",
52+
"lxml>=3.8, !=4.7.0",
53+
]
4854

4955
[tool.cibuildwheel]
5056
build-verbosity = 1
5157
build-frontend = "build"
5258
skip = [
53-
"pp*",
54-
"*-musllinux_i686",
55-
# LXML doesn't publish wheels for these platforms, which makes it
56-
# difficult for us to build wheels, so we exclude them.
57-
"cp36-manylinux_aarch64",
58-
"cp37-manylinux_aarch64",
59-
"cp36-musllinux_aarch64",
60-
"cp37-musllinux_aarch64",
61-
"cp36-macosx*",
62-
"cp37-macosx*",
63-
"cp38-macosx*",
59+
"pp*",
60+
"*-musllinux_i686",
61+
# LXML doesn't publish wheels for these platforms, which makes it
62+
# difficult for us to build wheels, so we exclude them.
63+
"cp36-manylinux_aarch64",
64+
"cp37-manylinux_aarch64",
65+
"cp36-musllinux_aarch64",
66+
"cp37-musllinux_aarch64",
67+
"cp36-macosx*",
68+
"cp37-macosx*",
69+
"cp38-macosx*",
6470
]
6571
test-command = "pytest -v --color=yes {package}/tests"
6672
before-test = "pip install -r requirements-test.txt"
@@ -72,10 +78,12 @@ PYXMLSEC_STATIC_DEPS = "true"
7278
[tool.cibuildwheel.linux]
7379
archs = ["x86_64", "aarch64", "i686"]
7480
environment-pass = [
75-
"PYXMLSEC_LIBXML2_VERSION",
76-
"PYXMLSEC_LIBXSLT_VERSION",
77-
"PYXMLSEC_STATIC_DEPS",
78-
"GH_TOKEN"
81+
"PYXMLSEC_LIBXML2_VERSION",
82+
"PYXMLSEC_LIBXSLT_VERSION",
83+
"PYXMLSEC_XMLSEC1_VERSION",
84+
"PYXMLSEC_OPENSSL_VERSION",
85+
"PYXMLSEC_STATIC_DEPS",
86+
"GH_TOKEN",
7987
]
8088

8189
[tool.cibuildwheel.macos]

0 commit comments

Comments
 (0)