Currently uses has to explicitly specify the version of the bundle to download.
Can we have the support to download latest version of the bundle when version is not provided.
from monai.bundle import download
# downloads latest version (NOT SUPPORTED)
download(name="spleen_ct_segmentation")
# download specific version (SUPPORTED)
download(name="spleen_ct_segmentation", version="0.3.1")