We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38f9f30 commit e8a4590Copy full SHA for e8a4590
1 file changed
src/bonsai/Makefile
@@ -48,7 +48,6 @@ VERSION_PATCH:=$(shell cat '../../VERSION' | cut -d '.' -f 3)
48
VERSION_DATE:=$(shell date '+%y%m%d')
49
LAST_COMMIT_HASH:=$(shell git rev-parse HEAD)
50
LAST_COMMIT_DATE:=$(shell git show -s --format=%cI)
51
-PYVERSION:=py310
52
PYPI_IMP:=cp
53
54
ifeq ($(PYVERSION), py311)
@@ -104,7 +103,10 @@ endif
104
103
.PHONY: dist
105
dist:
106
ifndef PLATFORM
107
- $(error PLATFORM is not set)
+ $(error PLATFORM is not set. Example values: win, linux, macos, macosm1.)
+endif
108
+ifndef PYVERSION
109
+ $(error PYVERSION is not set. Example value - 'py313'. Supported Python versions - 3.11-3.13.)
110
endif
111
rm -rf build
112
mkdir -p build
0 commit comments