Files
home-llm/scripts/run_docker_to_make_wheels.sh
Alex O'Connell fc49f61a49 Release v0.3.11
2025-09-15 22:03:35 -04:00

21 lines
599 B
Bash
Executable File

#!/bin/bash
VERSION_TO_BUILD="v0.3.16"
# make python 11 wheels
# docker run -it --rm \
# --entrypoint bash \
# -v $(pwd):/tmp/dist \
# homeassistant/home-assistant:2023.12.4 /tmp/dist/make_wheel.sh $VERSION_TO_BUILD
# make python 12 wheels
# docker run -it --rm \
# --entrypoint bash \
# -v $(pwd):/tmp/dist \
# homeassistant/home-assistant:2024.2.1 /tmp/dist/make_wheel.sh $VERSION_TO_BUILD
# make python 13 wheels
docker run -it --rm \
--entrypoint bash \
-v $(pwd):/tmp/dist \
homeassistant/home-assistant:2025.4.1 /tmp/dist/make_wheel.sh $VERSION_TO_BUILD