From 7091efe0061ed3038b79c35cf5f5bff1ffae0734 Mon Sep 17 00:00:00 2001 From: Marcel Nijenhof Date: Sun, 25 Jul 2021 16:47:13 +0200 Subject: [PATCH] Correctie: UserWarning: Normalizing '0.1.05' to '0.1.5' --- lmwsip/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lmwsip/__init__.py b/lmwsip/__init__.py index 1d62c12..7616a99 100644 --- a/lmwsip/__init__.py +++ b/lmwsip/__init__.py @@ -12,7 +12,7 @@ from datetime import datetime, timedelta from dateutil import tz """ Version info changed by git hook """ -__version__ = '0.1.05' +__version__ = '0.1.5' class LmwSip: """Class to connect to the LMW Standard Interface prototcol (sip) diff --git a/setup.py b/setup.py index a9b688d..a48a813 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="lmwsip", # Replace with your own username - version="0.1.05", + version="0.1.5", author="Marcel Nijenhof", author_email="pip@pion.xs4all.nl", description="Interface for the lmw sip protocol",