mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2026-04-04 12:17:57 +03:00
chore: checkpoint current IDF 5.5 remediation state
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
#!/opt/esp/python_env/idf4.4_py3.8_env/bin/python
|
||||
#!/usr/bin/env python3
|
||||
from functools import partial
|
||||
import sys
|
||||
import json
|
||||
|
||||
BIN
tools/protoc_utils/__pycache__/ProtoElement.cpython-312.pyc
Normal file
BIN
tools/protoc_utils/__pycache__/ProtoElement.cpython-312.pyc
Normal file
Binary file not shown.
BIN
tools/protoc_utils/__pycache__/ProtocParser.cpython-312.pyc
Normal file
BIN
tools/protoc_utils/__pycache__/ProtocParser.cpython-312.pyc
Normal file
Binary file not shown.
@@ -7,7 +7,7 @@ def check_packages(packages):
|
||||
for package in packages:
|
||||
try:
|
||||
pkg_resources.require(package)
|
||||
except pkg_resources.DistributionNotFound:
|
||||
except (pkg_resources.DistributionNotFound, pkg_resources.VersionConflict):
|
||||
missing_packages.append(package)
|
||||
return missing_packages
|
||||
|
||||
@@ -21,7 +21,9 @@ def install_packages(packages):
|
||||
return False
|
||||
return True
|
||||
|
||||
required_packages = ["protobuf", "grpcio-tools"]
|
||||
# Nanopb in this tree relies on google.protobuf.reflection.MakeClass,
|
||||
# which is not available in newer protobuf releases.
|
||||
required_packages = ["protobuf>=3.20,<5"]
|
||||
missing_packages = check_packages(required_packages)
|
||||
|
||||
if missing_packages:
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/opt/esp/python_env/idf4.4_py3.8_env/bin/python
|
||||
#!/usr/bin/env python3
|
||||
import json
|
||||
import os
|
||||
import sys
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/opt/esp/python_env/idf4.4_py3.8_env/bin/python
|
||||
#!/usr/bin/env python3
|
||||
import json
|
||||
import os
|
||||
import sys
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/opt/esp/python_env/idf4.4_py3.8_env/bin/python
|
||||
#!/usr/bin/env python3
|
||||
import os
|
||||
|
||||
import logging
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/opt/esp/python_env/idf4.4_py3.8_env/bin/python
|
||||
#!/usr/bin/env python3
|
||||
import argparse
|
||||
import sys
|
||||
import os
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/opt/esp/python_env/idf4.4_py3.8_env/bin/python
|
||||
#!/usr/bin/env python3
|
||||
import os
|
||||
|
||||
import logging
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#!/opt/esp/python_env/idf4.4_py3.8_env/bin/python
|
||||
#!/usr/bin/env python3
|
||||
import io
|
||||
import os
|
||||
|
||||
|
||||
Reference in New Issue
Block a user