-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Description
Looks like the version string for the package metadata was updated for the v0.2.2 release
Line 49 in 9e991a7
| version='0.2.2', |
but the one stored in the __version__ attribute wasn't
| __version__ = '0.2.1' |
If you want, you can make it so that the version string is stored in only one place (your setup file) by instead setting the __version__ attribute with:
import sys
if sys.version_info < (3, 8):
import importlib_metadata as metadata
else:
from importlib import metadata
__version__ = metadata.version('pydata-wrangler')Metadata
Metadata
Assignees
Labels
No labels