forked from snowflakedb/snowflake-connector-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (23 loc) · 696 Bytes
/
pyproject.toml
File metadata and controls
27 lines (23 loc) · 696 Bytes
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
[build-system]
requires = [
# The minimum setuptools version is specific to the PEP 517 backend,
# and may be stricter than the version required in `setup.py`
"setuptools>=40.6.0",
"wheel",
"cython",
# Must be kept in sync with the `setup_requirements` in `setup.cfg`
"pyarrow>=10.0.1,<10.1.0",
]
[tool.cibuildwheel]
test-skip = "*"
manylinux-x86_64-image = "manylinux2014"
environment = {AUDITWHEEL_PLAT="manylinux2014_$(uname -m)"}
build-verbosity = 1
[tool.cibuildwheel.linux]
archs = ["x86_64", "aarch64"]
[tool.cibuildwheel.macos]
archs = ["x86_64", "arm64"]
# Don't repair macOS wheels
repair-wheel-command = ""
[tool.cibuildwheel.windows]
archs = ["AMD64"]