From 6d6e7ff2e745b2bac04bb3abf6f7fc8c012639d1 Mon Sep 17 00:00:00 2001 From: Claudius Heine Date: Thu, 9 Nov 2017 14:16:18 +0100 Subject: [PATCH] setup: added python version requirement Signed-off-by: Claudius Heine --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index bb9cbff..3be0c6c 100644 --- a/setup.py +++ b/setup.py @@ -86,4 +86,7 @@ setup( 'distro>=1.0.0', 'jsonschema>=2.5.0', ], + + # At least python 3.4 is needed for asyncio: + python_requires='>=3.4', )