packaging: Upgrade dependencies in uv.lock when creating a new version.

This commit is contained in:
Andrew Hamilton 2024-12-18 00:11:46 +10:00
parent 2b374ef431
commit 7ea0a3f8f7

View file

@ -19,7 +19,7 @@ if [ $NEW_VERSION == $CURRENT_VERSION ]; then
fi
git grep --no-color -l $CURRENT_VERSION | xargs sed -i "s/$CURRENT_VERSION/$NEW_VERSION/g"
for DIR in eris fill3 lscolors termstr ; do
cd $DIR; uv lock; cd ..
cd $DIR; uv lock --upgrade; cd ..
done
git commit --all --message="Update version to $NEW_VERSION"
git tag $NEW_VERSION