2018-08-23 11:16:56 +02:00
|
|
|
# This is a list of python packages needed for ESP-IDF. This file is used with pip.
|
|
|
|
# Please see the Get Started section of the ESP-IDF Programming Guide for further information.
|
2018-08-15 09:52:07 +02:00
|
|
|
#
|
2019-11-04 15:43:13 +01:00
|
|
|
setuptools>=21
|
2018-09-07 08:44:19 +02:00
|
|
|
# The setuptools package is required to install source distributions and on some systems is not installed by default.
|
2019-11-04 15:43:13 +01:00
|
|
|
# Please keep it as the first item of this list. Version 21 is required to handle PEP 508 environment markers.
|
2018-09-07 08:44:19 +02:00
|
|
|
#
|
2020-11-26 08:35:05 +07:00
|
|
|
click>=7.0
|
2018-08-15 09:52:07 +02:00
|
|
|
pyserial>=3.0
|
2018-09-29 13:00:12 +03:00
|
|
|
future>=0.15.2
|
2021-10-04 12:10:42 +02:00
|
|
|
cryptography>=2.1.4,<35
|
2021-10-21 11:43:19 +02:00
|
|
|
# cffi 1.15 supports Python 3.6+ only
|
|
|
|
cffi<1.15;python_version<'3.6'
|
2019-04-17 09:57:42 +02:00
|
|
|
pyparsing>=2.0.3,<2.4.0
|
2018-12-12 20:38:23 +03:00
|
|
|
pyelftools>=0.22
|
2021-05-05 13:10:41 +03:00
|
|
|
idf-component-manager~=1.0
|
2020-12-09 13:27:01 +01:00
|
|
|
|
2022-11-10 17:06:44 +01:00
|
|
|
gdbgui==0.13.2.0; python_version < "3.11"
|
2020-08-26 08:40:05 +02:00
|
|
|
# 0.13.2.1 supports Python 3.6+ only
|
|
|
|
# Windows is not supported since 0.14.0.0. See https://github.com/cs01/gdbgui/issues/348
|
2022-11-10 17:06:44 +01:00
|
|
|
pygdbmi<=0.9.0.2; python_version < "3.11"
|
2021-01-19 13:39:43 +08:00
|
|
|
# The pygdbmi required max version 0.9.0.2 since 0.9.0.3 is not compatible with latest gdbgui (>=0.13.2.0)
|
2021-04-27 14:27:22 +02:00
|
|
|
# A compatible Socket.IO should be used. See https://github.com/miguelgrinberg/python-socketio/issues/578
|
2022-11-10 17:06:44 +01:00
|
|
|
python-socketio<5; python_version < "3.11"
|
|
|
|
jinja2<3.1; python_version < "3.11" # See https://github.com/espressif/esp-idf/issues/8760
|
|
|
|
itsdangerous<2.1; python_version < "3.11"
|
|
|
|
|
|
|
|
# gdbgui is not supported on Python 3.11. See https://github.com/cs01/gdbgui/issues/447
|
|
|
|
pygdbmi<=0.9.0.2; python_version > "3.10"
|
2020-12-09 13:27:01 +01:00
|
|
|
|
2020-11-05 10:37:03 +11:00
|
|
|
kconfiglib==13.7.1
|
|
|
|
|
|
|
|
# esptool requirements (see components/esptool_py/esptool/setup.py)
|
2020-07-14 17:35:37 +08:00
|
|
|
reedsolo>=1.5.3,<=1.5.4
|
2022-11-20 17:31:21 +01:00
|
|
|
# bitstring 4 dropped support for Python 3.6 and older
|
|
|
|
bitstring>=3.1.6,<4
|
2020-11-05 10:37:03 +11:00
|
|
|
ecdsa>=0.16.0
|
2019-07-23 21:37:31 +02:00
|
|
|
|
2021-01-19 13:39:43 +08:00
|
|
|
# espcoredump requirements
|
|
|
|
# This is the last version supports both 2.7 and 3.4
|
|
|
|
construct==2.10.54
|
|
|
|
|
2019-09-10 09:58:52 +02:00
|
|
|
# windows-curses are required in Windows command line but cannot be installed in MSYS2. A requirement like
|
|
|
|
# "windows-curses; sys_platform == 'win32'" would want to install the package on both of them. There is no environment
|
|
|
|
# marker for detecting MSYS2. So instead, a dummy custom package is used with "windows-curses" dependency for Windows
|
|
|
|
# command line.
|
|
|
|
file://${IDF_PATH}/tools/kconfig_new/esp-windows-curses; sys_platform == 'win32'
|