You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Command line seems to print the older version, see below. I discovered because I was confirming the latest version was installed for some troubleshooting. Pip shows the current "0.4.0.dev3" but python-kasa itself says the version is "0.4.0.dev2".
The version in /pyproject.toml is correct at version = "0.4.0.dev3", file METADATA in the package gives the correct Version: 0.4.0.dev3 which can be seen working in python by
The CLI version seems to come from the click function @click.version_option() which is supposed to get the version using importlib.metadata.version() so I'm not sure what's causing the problem.
Command line seems to print the older version, see below. I discovered because I was confirming the latest version was installed for some troubleshooting. Pip shows the current "0.4.0.dev3" but python-kasa itself says the version is "0.4.0.dev2".
The version in
/pyproject.tomlis correct atversion = "0.4.0.dev3", file METADATA in the package gives the correctVersion: 0.4.0.dev3which can be seen working in python byThe CLI version seems to come from the click function
@click.version_option()which is supposed to get the version usingimportlib.metadata.version()so I'm not sure what's causing the problem.