From b95315e15e27a4efcb8f8b5fa047d5a90d07a7c5 Mon Sep 17 00:00:00 2001 From: alexcjohnson Date: Thu, 16 Mar 2023 16:17:58 -0400 Subject: [PATCH] require package packaging seems it's implicitly included by another dep in py3.7+, but not in 3.6 --- packages/python/plotly/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/python/plotly/setup.py b/packages/python/plotly/setup.py index 1a8f2057320..3614cb970d6 100644 --- a/packages/python/plotly/setup.py +++ b/packages/python/plotly/setup.py @@ -556,7 +556,7 @@ def run(self): data_files=[ ("etc/jupyter/nbconfig/notebook.d", ["jupyterlab-plotly.json"]), ], - install_requires=["tenacity>=6.2.0"], + install_requires=["tenacity>=6.2.0", "packaging"], zip_safe=False, cmdclass=dict( build_py=js_prerelease(versioneer_cmds["build_py"]),