Skip to content

Commit d1e831b

Browse files
committed
feat: add conda base image
1 parent 12ef8bf commit d1e831b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ python_version_minor := $(word 2,${python_version_full})
44
python_version_patch := $(word 3,${python_version_full})
55

66

7-
PY_GT_3_6 := $(shell [ $(python_version_major) -gt 3 -o \( $(python_version_major) -eq 3 -a $(python_version_minor) -ge 6 \) ] && echo true)
7+
PY_GT_3_8 := $(shell [ $(python_version_major) -gt 3 -o \( $(python_version_major) -eq 3 -a $(python_version_minor) -ge 8 \) ] && echo true)
88

99
PYLIB=$(shell python3-config --ldflags)
1010
PYINC=$(shell python3-config --cflags)
11-
ifeq ($(PY_GT_3_6),true)
11+
ifeq ($(PY_GT_3_8),true)
1212
PYLIB=$(shell python3-config --ldflags --embed)
1313
PYINC=$(shell python3-config --cflags --embed )
1414
endif

0 commit comments

Comments
 (0)