bltcn
2024-08-19 3a2f6693a164d292df648f22afaa152cf5b747be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from packaging import version
from funasr import __version__  # Ensure that __version__ is defined in your package's __init__.py
 
 
def get_pypi_version(package_name):
    import requests
 
    url = f"https://pypi.org/pypi/{package_name}/json"
    response = requests.get(url)
    if response.status_code == 200:
        data = response.json()
        return version.parse(data["info"]["version"])
    else:
        raise Exception("Failed to retrieve version information from PyPI.")
 
 
def check_for_update(disable=False):
    current_version = version.parse(__version__)
    print(f"funasr version: {current_version}.")
    if disable:
        return
 
    pypi_version = get_pypi_version("funasr")
 
    if current_version < pypi_version:
        print(f"New version is available: {pypi_version}.")
        print('Please use the command "pip install -U funasr" to upgrade.')
    else:
        print(f"You are using the latest version of funasr-{current_version}")