Fixed missing version resolution without pyproject.toml

This commit is contained in:
Mark Qvist 2023-05-11 20:52:15 +02:00
parent 494ebb29fb
commit 4897cd0387

View File

@ -31,7 +31,11 @@ def _get_version():
import tomli
return tomli.load(open(os.path.join(os.path.dirname(module_dir), "pyproject.toml"), "rb"))["tool"]["poetry"]["version"]
except:
return "0.0.0"
try:
import pkg_resources
return pkg_resources.get_distribution("rnsh").version
except:
return "0.0.0"
except:
return "0.0.0"