diff options
author | Ricardo Martincoski <ricardo.martincoski@gmail.com> | 2018-10-16 20:44:57 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-17 21:48:08 +0200 |
commit | 1eb32c2d0811c7517017ca2f8506cf77562e02eb (patch) | |
tree | de95044a67dc9da8feef0eb885d2be76594b424b | |
parent | 300af90d3f9ae3989464a8a8a460b059e0e204ea (diff) | |
download | buildroot-1eb32c2d0811c7517017ca2f8506cf77562e02eb.tar.gz buildroot-1eb32c2d0811c7517017ca2f8506cf77562e02eb.zip |
python-crossbar: drop Python 2 support
Upstream is now Python 3 only.
Quoting the maintainer [1]: "the last version of crossbar with python 2
support: pip install crossbar==18.4.1".
[1] https://github.com/crossbario/crossbar/issues/1332
Signed-off-by: Ricardo Martincoski <ricardo.martincoski@gmail.com>
Cc: Asaf Kahlon <asafka7@gmail.com>
Cc: Mauro Condarelli <mc5686@mclink.it>
Cc: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/python-crossbar/Config.in | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/python-crossbar/Config.in b/package/python-crossbar/Config.in index 2f9de6e0b5..526d9871be 100644 --- a/package/python-crossbar/Config.in +++ b/package/python-crossbar/Config.in @@ -1,6 +1,7 @@ config BR2_PACKAGE_PYTHON_CROSSBAR bool "python-crossbar" depends on BR2_INSTALL_LIBSTDCPP # python-cryptography + depends on BR2_PACKAGE_PYTHON3 # All the following dependencies are runtime dependencies select BR2_PACKAGE_PYTHON_ATTRS select BR2_PACKAGE_PYTHON_AUTOBAHN @@ -48,3 +49,4 @@ config BR2_PACKAGE_PYTHON_CROSSBAR comment "python-crossbar needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP + depends on BR2_PACKAGE_PYTHON3 |