forked from Quansight-Labs/stable-abi-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 943 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 943 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
28
29
30
31
32
33
34
35
36
37
[dependency-groups]
backends = [
"maturin",
"meson-python @ git+https://github.com/mgorny/meson-python@freethreading-limited-api",
"scikit-build-core",
"setuptools @ git+https://github.com/ngoldbaum/setuptools@abi3.abi3t",
"packaging @ git+https://github.com/ngoldbaum/packaging@abi3.abi3t",
]
build-tools = [
"cython @ git+https://github.com/cython/cython@freethreading-limited-api-preview",
"cython-cmake", # for scikit-build-core
"nanobind",
]
test = [
"build",
"pip @ git+https://github.com/mgorny/pip@freethreading-limited-api",
"pytest >= 9.0",
"pytest-xdist",
{ include-group = "backends" },
{ include-group = "build-tools" },
]
[tool.pytest]
testpaths = ["tests"]
xfail_strict = true
[tool.tox]
requires = ["tox>=4.22"]
env_list = ["3.15", "3.15t"]
skipsdist = true
[tool.tox.env_run_base]
commands = [
["pytest", "-n", "auto"],
]
dependency_groups = ["test"]
set_env = { NO_CYTHON_COMPILE = "true" }