switch from Poetry to Uv & upgrade to Python 3.13

This commit is contained in:
ducklet 2024-10-09 21:47:04 +02:00
parent 3cbff4c68e
commit 6edd82de92
6 changed files with 115 additions and 135 deletions

View file

@ -12,5 +12,5 @@ builddir=build
cd "$root"
[ -d "$builddir" ] || mkdir "$builddir"
poetry export --output="$builddir"/requirements.txt
$DOCKER_BIN build --tag webclip .
uv export --quiet --output-file="$builddir"/requirements.txt
$DOCKER_BIN build --tag=webclip .

View file

@ -3,7 +3,7 @@
[ -z "${DEBUG:-}" ] || set -x
# --reload \
# exec poetry run uvicorn \
# exec uv run uvicorn \
exec uvicorn \
--no-server-header \
--no-date-header \