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 4dd963f commit cb2cd7bCopy full SHA for cb2cd7b
builder/main.py
@@ -35,6 +35,15 @@
35
from platformio.package.version import pepver_to_semver
36
from platformio.util import get_serial_ports
37
38
+# Check Python version requirement
39
+if sys.version_info < (3, 10):
40
+ sys.stderr.write(
41
+ f"Error: Python 3.10 or higher is required. "
42
+ f"Current version: {sys.version_info.major}.{sys.version_info.minor}.{sys.version_info.micro}\n"
43
+ f"Please update your Python installation.\n"
44
+ )
45
+ sys.exit(1)
46
+
47
# Python dependencies required for the build process
48
python_deps = {
49
"uv": ">=0.1.0",
0 commit comments