From 9d9874ec10ff4f14eb9297178c2121555cb66ba6 Mon Sep 17 00:00:00 2001 From: Akshay Agrawal Date: Fri, 12 Jul 2024 11:39:06 -0700 Subject: [PATCH] add missing requirement (#1787) --- pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index ce87958ccd1..0c39e0a39f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,6 +46,8 @@ dependencies = [ # for cell formatting; if user version is not compatible, no-op # so no lower bound needed "ruff", + # for packaging.version; not sure what the lower bound is. + "packaging", ] readme = "README.md" license = { file = "LICENSE" }