The recently introduced change of the default version in setup.py (PR #65) prevents this module from being installed locally with pip install -e python-luxtronik which seems to refuses to install a version that is non numerical.
I changed it to 0.0.0-dev which works.
As this version string will be replaced automatically on release of a new version its not critical what it is set to while developing.
The recently introduced change of the default version in setup.py (PR #65) prevents this module from being installed locally with
pip install -e python-luxtronik
which seems to refuses to install a version that is non numerical. I changed it to0.0.0-dev
which works. As this version string will be replaced automatically on release of a new version its not critical what it is set to while developing.