Skip to content

Commit

Permalink
Update dependency requirement
Browse files Browse the repository at this point in the history
If anyone is reading the file they will know to install `python3-smbus`,
but if someone just do a quick `pip3 install bme680` then make sure to pull smbus from PyPI
  • Loading branch information
NicolaiSoeborg authored Nov 1, 2020
1 parent 91bb131 commit 02ca7a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,5 @@
classifiers=classifiers,
packages=['bme680'],
py_modules=[],
install_requires=['smbus2']
install_requires=['smbus'] # preferably: install `python3-smbus` instead of relying on this
)

0 comments on commit 02ca7a4

Please sign in to comment.