README and setup.* say that the package is for Python >= 3.4, but rflinkproxy/__main__.py contains async def connect(...), that syntax is for Python >= 3.5 only. Perhaps fix by dropping support for 3.4 :) ?
Or revert to python3.4 compatible syntax :). I see that file is not covered by tests so it doesn't fail on the py34 suite, I'll see what I can do about it
README and setup.* say that the package is for Python >= 3.4, but
rflinkproxy/__main__.py
containsasync def connect(...)
, that syntax is for Python >= 3.5 only. Perhaps fix by dropping support for 3.4 :) ?