Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .assets/provision/install_azurecli_uv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ dependencies = [

[tool.uv]
compile-bytecode = true
native-tls = true
system-certs = true
prerelease = "allow"
EOF

Expand Down
2 changes: 1 addition & 1 deletion .assets/provision/install_uv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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$
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down