From 237addb39c1d57d5f1e8dc5ade03e81df240ff74 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Tue, 15 Jan 2019 21:21:05 -0600 Subject: [PATCH] fake-pybricks/setup.py: update python_requires to PEP 440 Use the PEP 440 depenency format. The `>` character was breaking the package manager on jfrog. Picked 3.4 since that is what micropython is based on. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3a31829..ad92834 100644 --- a/setup.py +++ b/setup.py @@ -31,6 +31,6 @@ setup( 'Programming Language :: Python :: 3', ], keywords='lego mindstorms ev3', - python_requires='>=3', + python_requires='~=3.4', packages=['pybricks'], )