From a82eeba22b8cab16e65b63f18c68ebd63c205aae Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Tue, 5 Aug 2025 08:43:47 +0200 Subject: [PATCH] Pin `httpx` (#7691) * Pin `httpx` on CI * Update pyproject.toml * Update build.yml * Update pyproject.toml * Update pyproject.toml * Update pyproject.toml --- pyproject.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 61da67a3c..c1e6e8577 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,11 @@ [build-system] -requires = ["hatchling>=1.11", "jupyterlab>=4.5.0a1,<4.6"] +requires = [ + "hatchling>=1.11", + "jupyterlab>=4.5.0a1,<4.6", + # See https://github.com/jupyter/notebook/issues/7690 + # TODO: remove when https://github.com/jupyterlab/jupyterlab/pull/17746 is released + "httpx>=0.25.0,<1.0.dev1", +] build-backend = "hatchling.build" [project]