From cc2682855befa89f40367d88b2364139a66bf47e Mon Sep 17 00:00:00 2001 From: Jim Garrison Date: Mon, 20 Nov 2023 13:11:42 -0500 Subject: [PATCH] Install `async-timeout` rather than pin `aiohttp` In #454, I pinned `aiohttp`, but the failure was actually due to `async-timeout` not being installed (https://github.com/Qiskit-Extensions/circuit-knitting-toolbox/issues/453#issuecomment-1819548746). This PR updates `pyproject.toml` in accordance with this root cause. We can remove this line once a version of ray is released that fixes https://github.com/ray-project/ray/issues/41267. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 9d1d3a898..17b2cb9ef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -92,7 +92,7 @@ docs = [ notebook-dependencies = [ "circuit-knitting-toolbox[cplex,pyscf]", "quantum-serverless>=0.0.7", - "aiohttp!=3.9.0", + "async-timeout", "matplotlib", "ipywidgets", "pylatexenc",