mirror of
https://github.com/acon96/home-llm.git
synced 2026-01-08 05:14:02 -05:00
21 lines
604 B
Bash
Executable File
21 lines
604 B
Bash
Executable File
#!/bin/bash
|
|
|
|
VERSION_TO_BUILD="0.3.16+b6713"
|
|
|
|
# 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 |