Closed solsticedhiver closed 2 years ago
Yes, versions are handled in a different way now, this symbol is not needed by the build process anymore.
How can you get the version of the module, programatically then?
Python has a version()
function for that:
>>> from importlib.metadata import version
>>> version('flask-httpauth')
'4.5.1.dev0'
OK. Sorry. Thank you