@@ -142,6 +142,9 @@ def test_base(cookies, venv, capfd, template):
142142
143143 cwd = str (result .project_path )
144144
145+ # constraint setuptools < 82
146+ venv .install ('setuptools < 82' )
147+
145148 # this is a hook for executing scaffold tests against a specific
146149 # version of pyramid (or a local checkout on disk)
147150 if 'OVERRIDE_PYRAMID' in os .environ : # pragma: no cover
@@ -188,6 +191,9 @@ def test_zodb(cookies, venv, capfd, template):
188191
189192 cwd = str (result .project_path )
190193
194+ # constraint setuptools < 82
195+ venv .install ('setuptools < 82' )
196+
191197 # this is a hook for executing scaffold tests against a specific
192198 # version of pyramid (or a local checkout on disk)
193199 if 'OVERRIDE_PYRAMID' in os .environ : # pragma: no cover
@@ -235,6 +241,9 @@ def test_sqlalchemy(cookies, venv, capfd, template):
235241
236242 cwd = str (result .project_path )
237243
244+ # constraint setuptools < 82
245+ venv .install ('setuptools < 82' )
246+
238247 # this is a hook for executing scaffold tests against a specific
239248 # version of pyramid (or a local checkout on disk)
240249 if 'OVERRIDE_PYRAMID' in os .environ : # pragma: no cover
0 commit comments