From cc8a0e734f7bb7521d9a6240d8c1f0b814d0355f Mon Sep 17 00:00:00 2001 From: Florian Date: Tue, 28 Mar 2023 06:19:30 -0500 Subject: [PATCH] [DIAG] Fix requirement for windows (#117) Fix python setup error : distutils.errors.DistutilsSetupError: 'install_requires' must be a string or list of strings containing valid project/version requirement specifiers; Parse error at "'; python'": Expected string_end --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c8dd6550..ae283a54 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ include_package_data=True, install_requires=[ "bleak>=0.19.0", - "bluetooth-adapters>=0.15.3; python_version>=3.9", + 'bluetooth-adapters>=0.15.3; python_version>="3.9"', "bluetooth-clocks<1.0", "bluetooth-numbers>=1.0,<2.0", "paho-mqtt>=1.6.1",