From 841740ec4c6e5b865bcb9f3964c4b3011d61ed62 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Fri, 4 Mar 2022 16:06:15 +0100 Subject: [PATCH] Fix miss import GeoRideTrackerBeacon --- georideapilib/api.py | 3 ++- setup.py | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/georideapilib/api.py b/georideapilib/api.py index 62ef6d2..c1442c5 100644 --- a/georideapilib/api.py +++ b/georideapilib/api.py @@ -13,7 +13,8 @@ from georideapilib.objects import ( GeoRideUser, GeoRideTrackerTrip, GeoRideTrackerPosition, - GeoRideSharedTrip + GeoRideSharedTrip, + GeoRideTrackerBeacon ) from georideapilib.exception import ( diff --git a/setup.py b/setup.py index c634e83..72e7216 100644 --- a/setup.py +++ b/setup.py @@ -19,13 +19,13 @@ CURRENT_DIR = os.path.dirname(__file__) setup( name='georideapilib', packages=['georideapilib'], # this must be the same as the name above - version='0.8.0', + version='0.8.1', description='Lib to control GeoRide tracker devices with theire rest api', author='Matthieu DUVAL', author_email='georideapilib@duval-dev.fr', # use the URL to the github repo url='https://github.com/hacf/georide-api', - download_url='https://codeload.github.com/hacf/georide-api/tar.gz/0.8.0', + download_url='https://codeload.github.com/hacf/georide-api/tar.gz/0.8.1', keywords=['rest', 'georide', 'api', 'grutier', 'GeoRide'], # arbitrary keywords classifiers=[], install_requires=["python-socketio[client]==4.6.1"],