Extra timeout for installing the module from pypi
Some checks failed
continuous-integration/drone/push Build is failing

- To make sure the newest version is returned.
This commit is contained in:
Marcel Nijenhof
2022-01-08 17:46:36 +01:00
parent 67ddec8e0d
commit 424e989681
3 changed files with 3 additions and 2 deletions

View File

@@ -159,6 +159,7 @@ steps:
# Make sure we run the pip installed version # Make sure we run the pip installed version
commands: commands:
- rm -rf src - rm -rf src
- sleep 60
- pip install flask ddOperApi - pip install flask ddOperApi
- python -c "import ddOperApi" - python -c "import ddOperApi"
- python -c "import ddOperApi; print(ddOperApi.__version__)" - python -c "import ddOperApi; print(ddOperApi.__version__)"

View File

@@ -1,6 +1,6 @@
[metadata] [metadata]
name = ddOperApi name = ddOperApi
version = 0.9.2 version = 0.9.3
author = Marcel Nijenhof author = Marcel Nijenhof
author_email = pypi@marceln.org author_email = pypi@marceln.org
description = Interface for the dd-oper protocol description = Interface for the dd-oper protocol

View File

@@ -20,7 +20,7 @@ from datetime import datetime, timedelta
from dateutil.parser import parse from dateutil.parser import parse
""" Version info changed by git hook """ """ Version info changed by git hook """
__version__ = '0.9.2' __version__ = '0.9.3'
class ddOperApi: class ddOperApi:
""" """