Compare commits
4 Commits
7683ec29e9
...
0.9.8
Author | SHA1 | Date | |
---|---|---|---|
ef778c3e0a | |||
49eb1522b6 | |||
cdeeceeb55 | |||
64089ce72c |
@@ -15,7 +15,7 @@ jobs:
|
||||
run: tox
|
||||
- name: Upload na pypi
|
||||
env:
|
||||
TWINE_USERNAME: ${{ secret.PYPI_USER }}
|
||||
TWINE_PASSWORD: ${{ secret.PYPI_PASSWORD }}
|
||||
TWINE_USERNAME: ${{ secrets.PYPI_USER }}
|
||||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
||||
if: github.ref_type == 'tag'
|
||||
run: python3 -m twine upload dist/*
|
||||
|
@@ -1,6 +1,6 @@
|
||||
[metadata]
|
||||
name = lmwsip
|
||||
version = 0.9.6
|
||||
version = 0.9.8
|
||||
author = Marcel Nijenhof
|
||||
author_email = pypi@marceln.org
|
||||
description = Interface for the lmw sip protocol
|
||||
|
@@ -12,7 +12,7 @@ from datetime import datetime, timedelta
|
||||
from dateutil import tz
|
||||
|
||||
""" Version info changed by git hook """
|
||||
__version__ = '0.9.6'
|
||||
__version__ = '0.9.7'
|
||||
|
||||
class LmwSip:
|
||||
"""Class to connect to the LMW Standard Interface prototcol (sip)
|
||||
@@ -842,7 +842,7 @@ Returns:
|
||||
"""
|
||||
cmdstr=process + " " + self.meetnet + "," + location + "," + \
|
||||
parameter + "," + time_delta + "," + day + "," + \
|
||||
time_of_day + values + "\r"
|
||||
time_of_day + "," + values + "\r"
|
||||
d = self.sendrecv(cmdstr)
|
||||
if (d[0] != '!'):
|
||||
raise LmwCmdWarn(cmdstr, d)
|
||||
|
Reference in New Issue
Block a user