From 10bf55f62c4e8407dcb047bdb335a56363d78f18 Mon Sep 17 00:00:00 2001 From: Marcel Nijenhof Date: Fri, 6 Aug 2021 20:46:57 +0200 Subject: [PATCH] Correctie .drone --- .drone.yml | 2 +- ddOperApi/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 513abb0..eb0f14c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -156,7 +156,7 @@ steps: - python -c "import ddOperApi" - python -c "import ddOperApi; print(ddOperApi.__version__)" - > - [ $(python -c "import lmwsip; print(lmwsip.__version__)") = + [ $(python -c "import lmwsip; print(ddOperApi.__version__)") = $(python setup.py --version) ] - python -m unittest -v ddOperApi.tests when: diff --git a/ddOperApi/__init__.py b/ddOperApi/__init__.py index a28797d..7700476 100644 --- a/ddOperApi/__init__.py +++ b/ddOperApi/__init__.py @@ -20,7 +20,7 @@ from datetime import datetime, timedelta from dateutil.parser import parse """ Version info changed by git hook """ -__version__ = '0.1.2' +__version__ = '0.1.3' class ddOperApi: """ diff --git a/setup.py b/setup.py index 2413333..e21b5bc 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="ddOperApi", # Replace with your own username - version="0.1.2", + version="0.1.3", author="Marcel Nijenhof", author_email="pip@pion.xs4all.nl", description="Interface for dd-oper protocol",