| | |
| | | import requests |
| | | 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: |
| | |
| | | print(f"New version available: {pypi_version}. Your current version is {current_version}.") |
| | | print('Please use the command "pip install -U funasr" to upgrade.') |
| | | else: |
| | | print("You are using the latest version of funasr.") |
| | | print(f"You are using the latest version of funasr-{current_version}") |