You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: python/fdb5lib/buildconfig
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -11,12 +11,10 @@
11
11
# TODO we duplicate information -- pyproject.toml's `name` and `packages` are derivable from $NAME and must stay consistent
12
12
13
13
NAME="fdb"
14
-
# TODO -DENABLE_GRIB=1 causes build to fail, no idea why, no idea if desired
15
-
#
16
14
# NOTE zarr interface is dependent on python 3.11+ -- but we dont activate the venv at the time this is sourced, that's why we rely on PYVERSION. Remove this whole part around October 2026 when 3.10 goes EoL
17
15
# if [ "True" = "$(python -c 'import sys; print(sys.version_info[0:2] >= (3, 11))')" ] ; then
18
16
if [ "3.10" != "$PYVERSION" ] ; then
19
-
ZARR_IFACE="-DENABLE_PYTHON_ZARR_INTERFACE=1"
17
+
ZARR_IFACE="-DENABLE_PYTHON_ZARR_INTERFACE=ON"
20
18
else
21
19
>&2 echo "Not enabling zarr interface because python version is $PYVERSION"
22
20
ZARR_IFACE=""
@@ -27,12 +25,12 @@ fi
27
25
# this whole part around October 2026 when 3.10 goes EoL
28
26
# if [ "True" = "$(python -c 'import sys; print(sys.version_info[0:2] >= (3, 11))')" ] ; then
29
27
if [ "3.10" != "$PYVERSION" ] ; then
30
-
PYFDB_IFACE="-DENABLE_PYTHON_FDB_INTERFACE=1"
28
+
PYFDB_IFACE="-DENABLE_PYTHON_FDB_INTERFACE=ON"
31
29
else
32
30
>&2 echo "Not enabling pyfdb interface because python version is $PYVERSION"
0 commit comments