File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
sdk/python/packages/flet-cli/src/flet_cli Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ skip_commits:
1010
1111environment :
1212 python_stack : python 3.12
13- FLUTTER_VERSION : 3.27.2
13+ FLUTTER_VERSION : 3.27.3
1414 GITHUB_TOKEN :
1515 secure : 9SKIwc3VSfYJ5IChvNR74hQprJ0DRmcV9pPX+8KyE6IXIdfMsX6ikeUmMhJGRu3ztkZaF45jmU7Xn/6tauXQXhDBxK1N8kFHFSAnq6LjUXyhS0TZKX/H+jDozBeVbCXp
1616 TWINE_USERNAME : __token__
Original file line number Diff line number Diff line change 3333PYODIDE_ROOT_URL = "https://cdn.jsdelivr.net/pyodide/v0.25.0/full"
3434DEFAULT_TEMPLATE_URL = "gh:flet-dev/flet-build-template"
3535
36- MINIMAL_FLUTTER_VERSION = version .Version ("3.27.2 " )
36+ MINIMAL_FLUTTER_VERSION = version .Version ("3.27.3 " )
3737
3838error_style = Style (color = "red" , bold = True )
3939console = Console (log_path = False , theme = Theme ({"log.message" : "green bold" }))
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ def check_jdk_version(jdk_path):
3333 1
3434 ] # Extract version from output
3535 major_version = int (version_line .split ("." )[0 ])
36- return major_version > = JDK_MAJOR_VER
36+ return major_version = = JDK_MAJOR_VER
3737 except (IndexError , ValueError , FileNotFoundError ) as e :
3838 return False
3939
You can’t perform that action at this time.
0 commit comments