From 4af1a32d85afaccef0c9bac12e7d9ac73c58918e Mon Sep 17 00:00:00 2001 From: Neucrack Date: Thu, 25 Apr 2024 16:57:03 +0800 Subject: [PATCH] bump version to 4.0.11 and update build script --- .github/workflows/build_maixcam.yml | 3 +++ maix/version.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_maixcam.yml b/.github/workflows/build_maixcam.yml index 6c9070c0..4dad2dc8 100755 --- a/.github/workflows/build_maixcam.yml +++ b/.github/workflows/build_maixcam.yml @@ -42,8 +42,11 @@ jobs: whereis python3 # export PATH=~/.local/bin/:$PATH # pull sipeed/MaixCDK repo here first + pwd_path=$(pwd) + cd ~ git clone https://github.com/sipeed/MaixCDK --depth=1 export MAIXCDK_PATH=`pwd`/MaixCDK + cd $pwd_path python -m pip install -U pip setuptools python -m pip install -r MaixCDK/requirements.txt echo "--------------------------------" diff --git a/maix/version.py b/maix/version.py index b4aca508..30594bf0 100644 --- a/maix/version.py +++ b/maix/version.py @@ -3,6 +3,6 @@ version_major = 4 version_minor = 0 -version_patch = 10 +version_patch = 11 __version__ = "{}.{}.{}".format(version_major, version_minor, version_patch)