mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
bdc7b8b75a
This PR fixes the following scripts: 1) Scripts that can be executed within the repo's scripts directory. Note that these are for development testing and are not intended to be exposed to the user. configure_invokeai.py - configuration dream.py - the legacy CLI images2prompt.py - legacy "dream prompt" retriever invoke-new.py - new nodes-based CLI invoke.py - the legacy CLI under another name make_models_markdown_table.py - a utility used during the release/doc process pypi_helper.py - another utility used during the release process sd-metadata.py - retrieve JSON-formatted metadata from a PNG file 2) Scripts that are installed by pip install. They get placed into the venv's PATH and are intended to be the official entry points: invokeai-node-cli - new nodes-based CLI invokeai-node-web - new nodes-based web server invokeai - legacy CLI invokeai-configure - install time configuration script invokeai-merge - model merging script invokeai-ti - textual inversion script invokeai-model-install - model installer invokeai-update - update script invokeai-metadata" - retrieve JSON-formatted metadata from PNG files
30 lines
899 B
Python
Executable File
30 lines
899 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import requests
|
|
|
|
from ldm.invoke import __app_name__, __version__
|
|
|
|
local_version = str(__version__).replace("-", "")
|
|
package_name = str(__app_name__)
|
|
|
|
|
|
def get_pypi_versions(package_name=package_name) -> list[str]:
|
|
"""Get the versions of the package from PyPI"""
|
|
url = f"https://pypi.org/pypi/{package_name}/json"
|
|
response = requests.get(url).json()
|
|
versions: list[str] = list(response["releases"].keys())
|
|
return versions
|
|
|
|
|
|
def local_on_pypi(package_name=package_name, local_version=local_version) -> bool:
|
|
"""Compare the versions of the package from PyPI and the local package"""
|
|
pypi_versions = get_pypi_versions(package_name)
|
|
return local_version in pypi_versions
|
|
|
|
|
|
if __name__ == "__main__":
|
|
if local_on_pypi():
|
|
print(f"Package {package_name} is up to date")
|
|
else:
|
|
print(f"Package {package_name} is not up to date")
|