File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,4 @@ def get_xpk_version() -> str:
2424
2525def version (args ) -> None : # pylint: disable=unused-argument
2626 """Get version of xpk."""
27- xpk_version , git_hash = __version__ .split ('+' )
28- xpk_print ('xpk_version:' , xpk_version )
29- xpk_print ('git commit hash:' , git_hash )
27+ xpk_print ('xpk_version:' , __version__ )
Original file line number Diff line number Diff line change 1414limitations under the License.
1515"""
1616
17- import importlib .metadata as importlib_metadata
1817import os
1918import re
2019
2524from .system_characteristics import AcceleratorType , SystemCharacteristics
2625
2726# This is the version for XPK PyPI package
28- __version__ = importlib_metadata . version ( 'xpk' )
29- XPK_CURRENT_VERSION = __version__ . split ( '+' )[ 0 ]
27+ __version__ = 'v0.6.0'
28+ XPK_CURRENT_VERSION = __version__
3029XPK_CONFIG_FILE = os .path .expanduser ('~/.config/xpk/config.yaml' )
3130
3231CONFIGS_KEY = 'configs'
You can’t perform that action at this time.
0 commit comments