-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.toml
More file actions
42 lines (34 loc) · 1.14 KB
/
Copy pathbuild.toml
File metadata and controls
42 lines (34 loc) · 1.14 KB
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
library_name = "xmsgridtrace"
description = "Grid tracing library for XMS products"
ci_type = "github"
xms_dependencies = [
{ name = "xmscore", version = "7.0.13" },
{ name = "xmsgrid", version = "9.1.1" },
{ name = "xmsinterp", version = "7.0.12" },
{ name = "xmsextractor", version = "10.0.10" },
]
python_namespaced_dir = "gridtrace"
library_sources = [
"xmsgridtrace/gridtrace/XmGridTrace.cpp",
]
library_headers = [
"xmsgridtrace/gridtrace/XmGridTrace.h",
]
testing_headers = [
"xmsgridtrace/gridtrace/XmGridTrace.t.h",
]
pybind_sources = [
"xmsgridtrace/python/xmsgridtrace_py.cpp",
"xmsgridtrace/python/gridtrace/gridtrace_py.cpp",
"xmsgridtrace/python/gridtrace/XmGridTrace_py.cpp",
]
pybind_headers = [
"xmsgridtrace/python/gridtrace/gridtrace_py.h",
]
[ci]
python_versions = ["3.10", "3.13", "3.14"]
# python_versions fans out Windows only; mac and linux default to the single
# highest entry, so leaving these unset would move both platforms off 3.13
# onto 3.14 rather than adding a leg. Named explicitly to keep 3.13 building.
mac_python_versions = ["3.13", "3.14"]
linux_python_versions = ["3.13", "3.14"]