diff mbox series

[2/2] package/supervisor: can now run on Python 3

Message ID 20191026162219.144819-3-titouan.christophe@railnova.eu
State Accepted
Headers show
Series package/supervisor: bump version to run on Python3 | expand

Commit Message

Titouan Christophe Oct. 26, 2019, 4:22 p.m. UTC
Supervisor introduced support for Python3 starting with version 4.

Signed-off-by: Titouan Christophe <titouan.christophe@railnova.eu>
---
 package/supervisor/Config.in | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/package/supervisor/Config.in b/package/supervisor/Config.in
index 2ab0e048f6..623c3a836e 100644
--- a/package/supervisor/Config.in
+++ b/package/supervisor/Config.in
@@ -1,6 +1,6 @@ 
 config BR2_PACKAGE_SUPERVISOR
 	bool "supervisor"
-	depends on BR2_PACKAGE_PYTHON
+	depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
 	select BR2_PACKAGE_PYTHON_MELD3
 	select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime dependency
 	help
@@ -9,5 +9,6 @@  config BR2_PACKAGE_SUPERVISOR
 
 	  http://supervisord.org/
 
-comment "supervisor needs the python interpreter"
+comment "supervisor needs a python interpreter"
 	depends on !BR2_PACKAGE_PYTHON
+	depends on !BR2_PACKAGE_PYTHON3