Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated support for VCS pseudo URLs #9436

Merged
merged 5 commits into from
Jan 19, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve syntax
Co-authored-by: Xavier Fernandez <xav.fernandez@gmail.com>
  • Loading branch information
sbidoul and xavfernandez committed Jan 18, 2021
commit 28bbf898ea6633ffc9e3c9a7d228406bb7b5d9f8
2 changes: 1 addition & 1 deletion src/pip/_internal/req/constructors.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def parse_editable(editable_req):
link = Link(url)

if not link.is_vcs:
backends = ", ".join([backend.name + '+' for backend in vcs.backends])
backends = ", ".join(f"{backend.name}+" for backend in vcs.backends)
raise InstallationError(
f'{editable_req} is not a valid editable requirement. '
f'It should either be a path to a local project or a VCS URL '
Expand Down