Skip to content

Commit 3f2f813

Browse files
committed
Merge branch 'master' into feature/multivalue
2 parents 15a0111 + 00f7490 commit 3f2f813

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Cayenne MQTT Python Library
22
***************************
3-
The Cayenne MQTT Python Library provides functions to easily connect to the `Cayenne IoT project builder <https://www.cayenne-mydevices.com>`_. With it you can send data to and receive data from Cayenne.
3+
The Cayenne MQTT Python Library provides functions to easily connect to the `Cayenne IoT project builder <https://mydevices.com>`_. With it you can send data to and receive data from Cayenne.
44

55
Requirements
66
============
@@ -26,7 +26,7 @@ It can also be installed from the repository:
2626
2727
Cayenne Setup
2828
-------------
29-
1. Create your Cayenne account at https://www.cayenne-mydevices.com.
29+
1. Create your Cayenne account at https://mydevices.com.
3030
2. Add a new device using the Bring Your Own Thing API selection.
3131

3232
Examples

cayenne/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.0.0"
1+
__version__ = "1.0.1"

cayenne/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838

3939
# The callback for when the client receives a CONNACK response from the server.
40-
def on_connect(client, cayenne, rc):
40+
def on_connect(client, cayenne, flags, rc):
4141
if rc != 0:
4242
# MQTT broker error codes
4343
broker_errors = {

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
setup(name = 'cayenne-mqtt',
2828
version = __version__,
2929
author = 'myDevices',
30-
author_email = 'N/A',
30+
author_email = '[email protected]',
3131
description = 'Cayenne MQTT Python Library',
3232
long_description = long_description,
3333
license = 'MIT',
@@ -36,6 +36,6 @@
3636
classifiers = classifiers,
3737
packages = ['cayenne'],
3838
install_requires = [
39-
'paho-mqtt',
39+
'paho-mqtt >= 1.0',
4040
],
4141
)

0 commit comments

Comments
 (0)