update to v2.1.5

This commit is contained in:
blueloveTH 2025-12-06 21:22:41 +08:00
parent fc991ab697
commit aa2f15fcb6
4 changed files with 4 additions and 4 deletions

View File

@ -35,7 +35,7 @@ A new Flutter FFI plugin project.
s.prepare_command = <<-CMD s.prepare_command = <<-CMD
rm -rf pocketpy rm -rf pocketpy
git clone --branch v2.1.4 --depth 1 https://github.com/pocketpy/pocketpy.git git clone --branch v2.1.5 --depth 1 https://github.com/pocketpy/pocketpy.git
cd pocketpy cd pocketpy
git submodule update --init --recursive --depth 1 git submodule update --init --recursive --depth 1
bash build_ios_libs.sh bash build_ios_libs.sh

View File

@ -32,7 +32,7 @@ A new Flutter FFI plugin project.
s.prepare_command = <<-CMD s.prepare_command = <<-CMD
rm -rf pocketpy rm -rf pocketpy
git clone --branch v2.1.4 --depth 1 https://github.com/pocketpy/pocketpy.git git clone --branch v2.1.5 --depth 1 https://github.com/pocketpy/pocketpy.git
cd pocketpy cd pocketpy
git submodule update --init --recursive --depth 1 git submodule update --init --recursive --depth 1
bash build_darwin_libs.sh bash build_darwin_libs.sh

View File

@ -1,6 +1,6 @@
name: pocketpy name: pocketpy
description: A lightweight Python interpreter for game engines. It supports Android/iOS/Windows/Linux/MacOS. description: A lightweight Python interpreter for game engines. It supports Android/iOS/Windows/Linux/MacOS.
version: 2.1.4 version: 2.1.5
homepage: https://pocketpy.dev homepage: https://pocketpy.dev
repository: https://github.com/pocketpy/pocketpy repository: https://github.com/pocketpy/pocketpy

View File

@ -21,7 +21,7 @@ set(PK_BUILD_SHARED_LIB ON CACHE BOOL "" FORCE)
FetchContent_Declare( FetchContent_Declare(
pocketpy pocketpy
GIT_REPOSITORY https://github.com/pocketpy/pocketpy.git GIT_REPOSITORY https://github.com/pocketpy/pocketpy.git
GIT_TAG v2.1.4 GIT_TAG v2.1.5
) )
FetchContent_MakeAvailable(pocketpy) FetchContent_MakeAvailable(pocketpy)