From 53067021bc37e71ee6c6e52ba68f3217d2cd1107 Mon Sep 17 00:00:00 2001 From: "Jens H. Nielsen" Date: Tue, 7 May 2024 07:14:39 +0200 Subject: [PATCH] add missing requests dependency --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7ed7dc2..e3bec71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,7 +49,7 @@ Tracker = "https://github.com/QCoDeS/Qcodes_loop/issues" [project.optional-dependencies] qtplot = ["pyqtgraph>=0.11.0"] -slack = ["slack-sdk>=3.4.2"] +slack = ["slack-sdk>=3.4.2", "requests"] test = [ "coverage[toml]>=6.0.0", "hypothesis>=5.49.0", @@ -59,6 +59,7 @@ test = [ "pyqtgraph>=0.11.0", # pyqtgraph tests "PyQt5>=5.15.0", # pyqtgraph tests "slack-sdk>=3.4.2", # needed to typecheck slack extension + "requests", # types in slack tests ] docs = [ "nbsphinx>=0.8.9",