-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BLD: Bump the minimum nano-utils version
- Loading branch information
Bas van Beek
committed
Sep 1, 2022
1 parent
3fe85e1
commit 828b490
Showing
4 changed files
with
12 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,9 +6,13 @@ | |
__author__ = "Bas van Beek" | ||
__email__ = '[email protected]' | ||
|
||
import sys | ||
from nanoutils import VersionInfo | ||
version_info = VersionInfo.from_str(__version__) | ||
del VersionInfo | ||
if sys.version_info >= (3, 7): | ||
version_info = VersionInfo.from_str(__version__) | ||
else: | ||
version_info = VersionInfo._make(int(i) for i in __version__.split(".") if i.isnumeric()) | ||
del VersionInfo, sys | ||
|
||
from .logger import logger | ||
from .jobs import ( | ||
|
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,3 +1,3 @@ | ||
"""The **CAT** version.""" | ||
|
||
__version__ = '1.0.1' | ||
__version__ = '1.0.1.dev0' |
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