mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-08 21:54:26 +08:00
1001 B
1001 B
Testing Changes
-
Activate the ComfyUI environment.
-
Build package locally after making changes.
# from inside the ComfyUI-Manager directory, with the ComfyUI environment activated
python -m build
- Install the package locally in the ComfyUI environment.
# Uninstall existing package
pip uninstall comfyui-manager
# Install the locale package
pip install dist/comfyui-manager-*.whl
- Start ComfyUI.
# after navigating to the ComfyUI directory
python main.py
Manually Publish Test Version to PyPi
-
Set the
PYPI_TOKENenvironment variable in env file. -
If manually publishing, you likely want to use a release candidate version, so set the version in pyproject.toml to something like
0.0.1rc1. -
Build the package.
python -m build
- Upload the package to PyPi.
python -m twine upload dist/* --username __token__ --password $PYPI_TOKEN