-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update changelog for version 1.1.1 * Update to the latest dependencies versions * Prepare release version and update Python version in installation instructions * Update Python minimal version verification * Add flag to list_models subcommand * Update version on pyproject.toml file * Remove unnnecesary files in MANIFEST and initialization
- Loading branch information
Showing
8 changed files
with
114 additions
and
394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
include README.md | ||
include clinicadl/VERSION | ||
include LICENSE.txt | ||
include clinicadl/clinicadl/preprocessing/t1_extensive/info.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,7 @@ | ||
from importlib.metadata import version | ||
|
||
from .utils.maps_manager import MapsManager | ||
|
||
__all__ = ["__version__", "MapsManager"] | ||
|
||
# Load the Clinica package version | ||
import pkgutil | ||
import sys | ||
|
||
__version__ = pkgutil.get_data(__package__, "VERSION").decode("ascii").strip() | ||
version = __version__ | ||
|
||
# import pkg_resources | ||
# version = pkg_resources.require("Clinica")[0].version | ||
# __version__ = version | ||
|
||
# python 3.6 minimum version is required | ||
if sys.version_info < (3, 7): | ||
print(f"ClinicaDL {__version__} requires Python 3.7") | ||
sys.exit(1) | ||
__version__ = version("clinicadl") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.