forked from biolab/orange3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
31 lines (26 loc) · 903 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[build-system]
requires = [
"cython>=3.0",
"oldest-supported-numpy",
"recommonmark",
"setuptools>=51.0",
"sphinx",
"wheel",
"trubar>=0.3.4"
]
build-backend = "setuptools.build_meta"
[tool.cibuildwheel]
# Restrict the set of builds to mirror the wheels available in Orange3.
skip = ["cp36-*", "cp37-*", "cp38-*", "pp*", "*-musllinux_*"]
build-verbosity = 2
[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64"]
[tool.cibuildwheel.windows]
archs = ["AMD64"]
[tool.cibuildwheel.macos]
# https://cibuildwheel.readthedocs.io/en/stable/faq/#what-to-provide suggests to provide
# x86_64 and one of universal2 or amr64 wheels, since unviversal pack what is already in
# x86_64, currently universal2 is not built but arm64 is built instead
# x86_64 is still reuqired because of older pips, when remcomendation changes we can
# build only universal2
archs = ["x86_64", "arm64"]