forked from cvxpy/cvxpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
26 lines (24 loc) · 902 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
[tool.isort]
include_trailing_comma = true
use_parentheses = true
extend_skip = [
"cvxpy/__init__.py",
"cvxpy/reductions/__init__.py",
"cvxpy/reductions/dcp2cone/atom_canonicalizers/__init__.py"
]
[tool.pytest.ini_options]
testpaths = [
"cvxpy/tests/"
]
[build-system]
requires = [
"numpy>=1.15,<1.16; python_version=='3.7'",
"numpy>=1.16,<1.17; python_version=='3.8'",
"numpy>=1.19,<1.20; python_version=='3.9' and (platform_machine!='arm64' or platform_system!='Darwin')",
"numpy>=1.21.4,<1.22; python_version=='3.9' and (platform_machine=='arm64' and platform_system=='Darwin')",
"numpy>=1.21,<1.22; python_version=='3.10' and (platform_machine!='arm64' or platform_system!='Darwin')",
"numpy>=1.21.4,<1.22; python_version=='3.10' and (platform_machine=='arm64' and platform_system=='Darwin')",
"scipy >= 1.1.0",
"setuptools>=40.8.0",
"wheel"
]