diff --git a/.assets/provision/install_azurecli_uv.sh b/.assets/provision/install_azurecli_uv.sh index e991a42f..4928e100 100755 --- a/.assets/provision/install_azurecli_uv.sh +++ b/.assets/provision/install_azurecli_uv.sh @@ -45,7 +45,7 @@ dependencies = [ [tool.uv] compile-bytecode = true -native-tls = true +system-certs = true prerelease = "allow" EOF diff --git a/.assets/provision/install_uv.sh b/.assets/provision/install_uv.sh index 29351783..03b3b711 100755 --- a/.assets/provision/install_uv.sh +++ b/.assets/provision/install_uv.sh @@ -38,7 +38,7 @@ if [ -x "$HOME/.local/bin/uv" ]; then retry_count=0 max_retries=5 while [ $retry_count -le $max_retries ]; do - $HOME/.local/bin/uv self update --native-tls >&2 + $HOME/.local/bin/uv self update --system-certs >&2 [ $? -eq 0 ] && break || true ((retry_count++)) || true echo "retrying... $retry_count/$max_retries" >&2 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bb00284b..11313963 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -40,7 +40,7 @@ repos: - id: trailing-whitespace exclude: \.md$ - repo: https://github.com/DavidAnson/markdownlint-cli2 - rev: v0.22.0 + rev: v0.22.1 hooks: - id: markdownlint-cli2 files: \.md$ diff --git a/Makefile b/Makefile index 6d9f827d..31179df2 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,6 @@ install: ## Install pre-commit hooks prek install --overwrite upgrade: ## Upgrade prek and hooks versions @printf "\n✅ All dependencies upgraded\n\n" - prek self update prek auto-update .PHONY: hooks