| | |
| | | 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: |
| | |
| | | raise Exception("Failed to retrieve version information from PyPI.") |
| | | |
| | | |
| | | def check_for_update(): |
| | | def check_for_update(disable=False): |
| | | if disable: |
| | | return |
| | | current_version = version.parse(__version__) |
| | | pypi_version = get_pypi_version("funasr") |
| | | |