123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #
- # Copyright 2019 The FATE Authors. All Rights Reserved.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- import os
- from fate_arch.common.base_utils import json_dumps
- FATE_FLOW_BASE = os.getenv("FATE_FLOW_BASE")
- def get_fate_flow_directory(*args):
- global FATE_FLOW_BASE
- if FATE_FLOW_BASE is None:
- FATE_FLOW_BASE = os.path.abspath(
- os.path.join(
- os.path.dirname(os.path.realpath(__file__)),
- os.pardir,
- os.pardir,
- os.pardir,
- )
- )
- if args:
- return os.path.join(FATE_FLOW_BASE, *args)
- return FATE_FLOW_BASE
- def get_fate_flow_python_directory(*args):
- return get_fate_flow_directory("python", *args)
- def jprint(src: dict, indent: int = 4):
- print(json_dumps(src, indent=indent))
- def compare_version(version: str, target_version: str):
- ver_list = version.split('.')
- tar_ver_list = target_version.split('.')
- if int(ver_list[0]) >= int(tar_ver_list[0]):
- if int(ver_list[1]) > int(tar_ver_list[1]):
- return 'gt'
- elif int(ver_list[1]) < int(tar_ver_list[1]):
- return 'lt'
- else:
- if int(ver_list[2]) > int(tar_ver_list[2]):
- return 'gt'
- elif int(ver_list[2]) == int(tar_ver_list[2]):
- return 'eq'
- else:
- return 'lt'
- return 'lt'
|