Skip to content

Commit

Permalink
[DIAG] Fix requirement for windows (#117)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
1technophile committed Mar 28, 2023
1 parent 414563a commit cc8a0e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit cc8a0e7

Please sign in to comment.