python -m pip install --upgrade pip build twinegit pull --rebase
python -m pytest -qrg '^version\\s*=\\s*".*"' pyproject.toml필요하면 pyproject.toml의 version을 올린 뒤 커밋합니다.
rm -rf dist/ build/ *.egg-info
python -m buildpython -m twine check dist/*python -m twine upload --repository testpypi dist/*python -m venv .venv-testpypi
source .venv-testpypi/bin/activate
python -m pip install -U pip
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple deadends-dev
deadends "ModuleNotFoundError: No module named 'torch'"
deactivatepython -m twine upload dist/*python -m venv .venv-release-check
source .venv-release-check/bin/activate
python -m pip install -U pip
python -m pip install deadends-dev
deadends "CUDA error: out of memory"
deactivate