Update unit tests for the latest setuptools dependency updates.
Review Request #15102 — Created June 7, 2026 and updated — Latest diff uploaded
Setuptools now includes
wheelas a dependency for editable installs
and isolated build environments, which the unit tests weren't checking
for. This is now included in the appropriate tests.It also changed how dependency version specifiers are represented.
Instead ofpackage>=1.0, it's nowpackage >=1.0, with a space after
the package. This affected some tests as well, though doesn't impact
anything at package time.
All unit tests pass.