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
Currently the version number is only provided in xcube_cds.version.version, which is difficult for users to find. In Python, the standard location is <packagename>.__version__. xcube_cds should follow this standard by providing the version number in xcube_cds.__version__.
The text was updated successfully, but these errors were encountered:
pont-us
changed the title
Provide version number in xcube_cds.__version__
Provide version number in xcube_cds.__version__ and xcube.version
Nov 9, 2021
pont-us
changed the title
Provide version number in xcube_cds.__version__ and xcube.version
Provide version number in xcube_cds.__version__
Nov 9, 2021
Closes#56.
With this commit, __init__.py sets both xcube_cds.__version__ and
xcube_cds.version to the current version number. Note that
xcube_cds.version therefore no longer references the version module
but rather the version string itself, so any code still referencing
xcube_cds.version.version will break.
Currently the version number is only provided in
xcube_cds.version.version
, which is difficult for users to find. In Python, the standard location is<packagename>.__version__
.xcube_cds
should follow this standard by providing the version number inxcube_cds.__version__
.The text was updated successfully, but these errors were encountered: