fix(tools/python_dep_check): replace deprecated pkg_resources with importlib

Closes https://github.com/espressif/esp-idf/issues/11712
This commit is contained in:
Peter Dragun
2023-06-27 16:07:23 +02:00
parent 576ce647f8
commit c7da726b0b
4 changed files with 44 additions and 19 deletions
+3
View File
@@ -1,6 +1,9 @@
# Python package requirements for ESP-IDF. These are the so called core features which are installed in all systems.
setuptools
packaging
# importlib_metadata: is part of python3.8 and newer as importlib.metadata
importlib_metadata; python_version < "3.8"
click
pyserial
cryptography