From 96621ca2f29eba063e4c32662991f89c2963db21 Mon Sep 17 00:00:00 2001 From: Lydia Duncan Date: Tue, 16 Jan 2024 14:53:54 -0800 Subject: [PATCH] Fix an issue with the script to generate a release Add setuptools as a requirement to build the domain, since it seems as though the version of Python we are now using to create our release doesn't include it by default. ---- Signed-off-by: Lydia Duncan --- requirements.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/requirements.txt b/requirements.txt index 8c9510c..3f51380 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ # Note: DON'T UPDATE THIS WITHOUT ALSO UPDATING SETUP.PY docutils==0.18 Sphinx==5.3.0 +setuptools==54.0.0 diff --git a/setup.py b/setup.py index 4fdbb5b..c7d8693 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,7 @@ install_requires=[ 'docutils==0.18', 'Sphinx==5.3.0', + 'setuptools==54.0.0', ], namespace_packages=['sphinxcontrib'] )