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.
This commit is contained in:
David Lechner
2019-01-15 21:29:36 -06:00
parent e0b08cfad9
commit 237addb39c
+1 -1
View File
@@ -31,6 +31,6 @@ setup(
'Programming Language :: Python :: 3',
],
keywords='lego mindstorms ev3',
python_requires='>=3',
python_requires='~=3.4',
packages=['pybricks'],
)