-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
82 lines (71 loc) · 1.98 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[build-system]
requires = [
# setuptools >= 64 breaks editable builds:
# https://github.com/scikit-build/scikit-build/pull/737#issuecomment-1215573830
# setuptools < 64 is incompatible with Python 3.12.
# So: no editable builds on Python 3.12, for now.
"setuptools>=42,<64;python_version<'3.12'",
"setuptools>=64;python_version>='3.12'",
"wheel>=0.34.2",
"cmake>=3.18",
"scikit-build",
"nanobind>=1.3",
"ninja",
"pcpp",
]
build-backend = "setuptools.build_meta"
[tool.inducer-ci-support]
disable-editable-pip-install = true
[tool.ruff]
preview = true
exclude = [
"isl",
"aksetup_helper.py"
]
target-version = "py38"
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"C", # flake8-comprehensions
"E", # pycodestyle
"F", # pyflakes
"G", # flake8-logging-format
"I", # flake8-isort
"N", # pep8-naming
"NPY", # numpy
"Q", # flake8-quotes
"UP", # pyupgrade
"RUF", # ruff
"W", # pycodestyle
]
extend-ignore = [
"C90", # McCabe complexity
"E221", # multiple spaces before operator
"E226", # missing whitespace around arithmetic operator
"E402", # module-level import not at top of file
"UP006", # updated annotations due to __future__ import
"UP007", # updated annotations due to __future__ import
"UP031", # use f-strings instead of %
"UP032", # use f-strings instead of .format
]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"
inline-quotes = "double"
multiline-quotes = "double"
[tool.ruff.lint.isort]
combine-as-imports = true
known-local-folder = [
"islpy",
]
lines-after-imports = 2
[tool.cibuildwheel]
# nanobind does not support Py<3.8
skip = ["*-win-*", "[cp]p3[67]-*"]
[tool.cibuildwheel.linux]
# i686 does not have enough memory for LTO to complete
skip = ["[cp]p3[67]-*", "*_i686"]
[tool.cibuildwheel.macos]
archs = "x86_64 arm64"
[tool.cibuildwheel.macos.environment]
# Needed for full C++17 support
MACOSX_DEPLOYMENT_TARGET = "10.14"