update make wheel script

This commit is contained in:
Alex O'Connell
2024-06-09 17:49:31 -04:00
parent 37e1266757
commit 9f8014deed
2 changed files with 7 additions and 6 deletions

View File

@@ -55,8 +55,9 @@ To ensure compatibility with your Home Assistant and Python versions, select the
## Build your own
1. Clone the repository on the target machine that will be running Home Assistant
2. Ensure `docker` is installed
2. Run the `scripts/run_docker_to_make_wheels.sh` script
3. The wheel files will be placed in the folder you executed the script from
3. The compatible wheel files will be placed in the folder you executed the script from
# text-generation-webui

View File

@@ -1,12 +1,12 @@
#!/bin/bash
VERSION_TO_BUILD="v0.2.56"
VERSION_TO_BUILD="v0.2.77"
# make python11 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
# 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 \