This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated to new version of bluepy, incremented version number,
- Loading branch information
1 parent
8d7b508
commit a0b396a
Showing
2 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
bluepy | ||
bluepy==1.1.4 | ||
paho-mqtt | ||
pyyaml | ||
pyyaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,14 +10,13 @@ | |
import sys | ||
from distutils.core import setup | ||
|
||
install_requires = ['bluepy', "paho-mqtt", 'pyyaml'] | ||
install_requires = ['bluepy==1.1.4', "paho-mqtt", 'pyyaml'] | ||
if sys.version_info < (3, 0): | ||
install_requires.append('mock') | ||
print(install_requires) | ||
|
||
|
||
setup(name='plantgateway', | ||
version='0.3.7', | ||
version='0.3.8', | ||
description='Bluetooth to mqtt gateway for Xiaomi Mi plant sensors', | ||
author='Christian Kühnel', | ||
author_email='[email protected]', | ||
|