4 Commits

Author SHA1 Message Date
ef778c3e0a BUG FIX: cmdWrite fix
All checks were successful
build / build (push) Successful in 1m34s
2024-04-24 16:07:58 +02:00
49eb1522b6 Versie update: cmdWrite fix
Some checks failed
build / build (push) Has been cancelled
2024-04-24 16:06:15 +02:00
cdeeceeb55 Werkende upload
All checks were successful
build / build (push) Successful in 1m33s
2024-04-07 22:59:11 +02:00
64089ce72c Versie 0.9.7 2024-04-05 16:35:37 +02:00
3 changed files with 5 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ jobs:
run: tox run: tox
- name: Upload na pypi - name: Upload na pypi
env: env:
TWINE_USERNAME: ${{ secret.PYPI_USER }} TWINE_USERNAME: ${{ secrets.PYPI_USER }}
TWINE_PASSWORD: ${{ secret.PYPI_PASSWORD }} TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
if: github.ref_type == 'tag' if: github.ref_type == 'tag'
run: python3 -m twine upload dist/* run: python3 -m twine upload dist/*

View File

@@ -1,6 +1,6 @@
[metadata] [metadata]
name = lmwsip name = lmwsip
version = 0.9.6 version = 0.9.8
author = Marcel Nijenhof author = Marcel Nijenhof
author_email = pypi@marceln.org author_email = pypi@marceln.org
description = Interface for the lmw sip protocol description = Interface for the lmw sip protocol

View File

@@ -12,7 +12,7 @@ from datetime import datetime, timedelta
from dateutil import tz from dateutil import tz
""" Version info changed by git hook """ """ Version info changed by git hook """
__version__ = '0.9.6' __version__ = '0.9.7'
class LmwSip: class LmwSip:
"""Class to connect to the LMW Standard Interface prototcol (sip) """Class to connect to the LMW Standard Interface prototcol (sip)
@@ -842,7 +842,7 @@ Returns:
""" """
cmdstr=process + " " + self.meetnet + "," + location + "," + \ cmdstr=process + " " + self.meetnet + "," + location + "," + \
parameter + "," + time_delta + "," + day + "," + \ parameter + "," + time_delta + "," + day + "," + \
time_of_day + values + "\r" time_of_day + "," + values + "\r"
d = self.sendrecv(cmdstr) d = self.sendrecv(cmdstr)
if (d[0] != '!'): if (d[0] != '!'):
raise LmwCmdWarn(cmdstr, d) raise LmwCmdWarn(cmdstr, d)