-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ version.py: add release_history as a list of Tags - use Tag from the collection module to save the release history explicitly - distinguish between release version number/date and version number/date - update version_number/date/description usage in __inti__.py, view.py and smallbaselineApp.py + bump the release version number to 1.3.2
- Loading branch information
Showing
6 changed files
with
38 additions
and
24 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,15 +1,5 @@ | ||
# get version info | ||
from mintpy.version import release_version, logo | ||
__version__ = release_version | ||
from mintpy.version import version_num, logo | ||
__version__ = version_num | ||
__logo__ = logo | ||
|
||
## check environment variable | ||
#import os | ||
#import sys | ||
#mintpy_path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | ||
#sys.path.insert(1, mintpy_path) | ||
#sys.path.insert(1, os.path.join(mintpy_path, 'defaults')) | ||
#sys.path.insert(1, os.path.join(mintpy_path, 'objects')) | ||
#sys.path.insert(1, os.path.join(mintpy_path, 'simulation')) | ||
#sys.path.insert(1, os.path.join(mintpy_path, 'utils')) | ||
|
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
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