Skip to content

Commit 4aa155f

Browse files
committed
replace flet-dev with cfms-dev
1 parent febf3d1 commit 4aa155f

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/serious_python/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: serious_python
22
description: A cross-platform plugin for adding embedded Python runtime to your Flutter apps.
33
homepage: https://flet.dev
4-
repository: https://github.com/flet-dev/serious-python
4+
repository: https://github.com/cfms-dev/serious-python
55
version: 0.9.4
66

77
platforms:

src/serious_python_android/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ android.defaultConfig.ndk.abiFilters.each { abi ->
9696
}
9797

9898
tasks.register("downloadDistArchive_$abi", Download) {
99-
src "https://github.com/flet-dev/python-build/releases/download/v${python_version}/python-android-dart-${python_version}-${abi}.tar.gz"
99+
src "https://github.com/cfms-dev/python-build/releases/download/v${python_version}/python-android-dart-${python_version}-${abi}.tar.gz"
100100
dest new File(buildDir, "python-android-${abi}.tar.gz")
101101
}
102102
tasks.register("untarFile_$abi", Copy) {

src/serious_python_darwin/darwin/prepare_ios.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ ! -d "$dist" ]; then
77
mkdir -p $dist
88

99
python_ios_dist_file="python-ios-dart-$python_version.tar.gz"
10-
python_ios_dist_url="https://github.com/flet-dev/python-build/releases/download/v$python_version/$python_ios_dist_file"
10+
python_ios_dist_url="https://github.com/cfms-dev/python-build/releases/download/v$python_version/$python_ios_dist_file"
1111

1212
# download iOS dist
1313
curl -LO $python_ios_dist_url

src/serious_python_darwin/darwin/prepare_macos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ ! -d "$dist" ]; then
77
mkdir -p $dist
88

99
python_macos_dist_file="python-macos-dart-$python_version.tar.gz"
10-
python_macos_dist_url="https://github.com/flet-dev/python-build/releases/download/v$python_version/$python_macos_dist_file"
10+
python_macos_dist_url="https://github.com/cfms-dev/python-build/releases/download/v$python_version/$python_macos_dist_file"
1111

1212
# download macos dist
1313
curl -LO $python_macos_dist_url

src/serious_python_linux/linux/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ project(${PROJECT_NAME} LANGUAGES CXX)
1717
set(PLUGIN_NAME "serious_python_linux_plugin")
1818

1919
set(PYTHON_PACKAGE ${CMAKE_BINARY_DIR}/python)
20-
set(PYTHON_URL https://github.com/flet-dev/python-build/releases/download/v${PYTHON_VERSION}/python-linux-dart-${PYTHON_VERSION}-${PYTHON_ARCH}.tar.gz)
20+
set(PYTHON_URL https://github.com/cfms-dev/python-build/releases/download/v${PYTHON_VERSION}/python-linux-dart-${PYTHON_VERSION}-${PYTHON_ARCH}.tar.gz)
2121
set(PYTHON_FILE ${CMAKE_BINARY_DIR}/python-linux-dart-${PYTHON_VERSION}-${PYTHON_ARCH}.tar.gz)
2222
if (NOT EXISTS ${PYTHON_FILE})
2323
file(DOWNLOAD ${PYTHON_URL} ${PYTHON_FILE})

src/serious_python_windows/windows/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ include_directories(
6262
target_link_libraries(${PLUGIN_NAME} PRIVATE flutter flutter_wrapper_plugin)
6363

6464
target_link_libraries(${PLUGIN_NAME} PRIVATE
65-
"${PYTHON_PACKAGE}/libs/python312$<$<CONFIG:Debug>:_d>.lib"
65+
"${PYTHON_PACKAGE}/libs/python314$<$<CONFIG:Debug>:_d>.lib"
6666
)
6767

6868
# List of absolute paths to libraries that should be bundled with the plugin.
6969
# This list could contain prebuilt libraries, or libraries created by an
7070
# external build triggered from this build file.
7171
set(serious_python_windows_bundled_libraries
72-
"${PYTHON_PACKAGE}/python312$<$<CONFIG:Debug>:_d>.dll"
72+
"${PYTHON_PACKAGE}/python314$<$<CONFIG:Debug>:_d>.dll"
7373
"${PYTHON_PACKAGE}/python3$<$<CONFIG:Debug>:_d>.dll"
7474
"$ENV{WINDIR}/system32/msvcp140.dll"
7575
"$ENV{WINDIR}/system32/vcruntime140.dll"

0 commit comments

Comments
 (0)