From 80786dadafcc16b93fd3fc2aa2cb950031bbb165 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 7 Mar 2026 07:15:10 -0800 Subject: [PATCH] Release 0.5a3 Pin to httpx<1.0 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index e1cdbf7..7a3a633 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dclient" -version = "0.5a2" +version = "0.5a3" description = "A client CLI utility for Datasette instances" readme = "README.md" authors = [{name = "Simon Willison"}] @@ -9,7 +9,7 @@ requires-python = ">=3.10" dependencies = [ "click", "click-default-group", - "httpx", + "httpx<1.0", "sqlite-utils", ]