yotarazona / scikit-eo

A Python package for Remote Sensing Data Analysis
https://yotarazona.github.io/scikit-eo/
Other
15 stars 2 forks source link

Version in init not automatically updated. #23

Closed KBodolai closed 1 week ago

KBodolai commented 2 weeks ago

The version in __init__.py is hardcoded to 0.1.0, whereas the latest release is 0.2.26.

I suggest something like this can give the user the right version to check when they try to check the package version within the python session:

"""Top-level package for scikit-eo."""

import importlib.metadata

__author__ = """Yonatan Tarazona Coronel"""
__email__ = 'geoyons@gmail.com'
__version__ = importlib.metadata.version('scikeo')
yotarazona commented 1 week ago

Hi @KBodolai. Thanks for that, Done!.