Fix the issue of pip install 'setuptools<70' failing in cmd#17313
Merged
w-e-w merged 1 commit intoAUTOMATIC1111:devfrom Mar 2, 2026
Merged
Fix the issue of pip install 'setuptools<70' failing in cmd#17313w-e-w merged 1 commit intoAUTOMATIC1111:devfrom
pip install 'setuptools<70' failing in cmd#17313w-e-w merged 1 commit intoAUTOMATIC1111:devfrom
Conversation
…esn't support single quotes.
w-e-w
approved these changes
Mar 2, 2026
4 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Summary
Use fixed setuptools version 69.5.1 instead of version range '<70'
The original constraint uses single quotes which causes issues in Windows Command Prompt, where '<' is interpreted as a redirection operator. This issue wasn't caught earlier because PowerShell handles single quotes correctly, masking the problem during initial testing. Using a fixed version avoids this shell compatibility issue entirely and aligns with requirements_versions.txt.
Changes
Replace version constraint 'setuptools<70' with fixed version setuptools==69.5.1
Issues Fixed
This issue originates from the previous PR #17293.
Screenshots/videos:
Checklist: