Skip to content

Commit

Permalink
Move PipSession to network.session (#7089)
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg authored Sep 28, 2019
2 parents 8bff9dc + c40331e commit ad33ece
Show file tree
Hide file tree
Showing 16 changed files with 656 additions and 618 deletions.
2 changes: 1 addition & 1 deletion src/pip/_internal/cli/req_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@

from pip._internal.cli.base_command import Command
from pip._internal.cli.command_context import CommandContextMixIn
from pip._internal.download import PipSession
from pip._internal.exceptions import CommandError
from pip._internal.index import PackageFinder
from pip._internal.legacy_resolve import Resolver
from pip._internal.models.selection_prefs import SelectionPreferences
from pip._internal.network.session import PipSession
from pip._internal.operations.prepare import RequirementPreparer
from pip._internal.req.constructors import (
install_req_from_editable,
Expand Down
2 changes: 1 addition & 1 deletion src/pip/_internal/collector.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
from pip._vendor.requests import Response

from pip._internal.models.search_scope import SearchScope
from pip._internal.download import PipSession
from pip._internal.network.session import PipSession

HTMLElement = xml.etree.ElementTree.Element
ResponseHeaders = MutableMapping[str, str]
Expand Down
Loading

0 comments on commit ad33ece

Please sign in to comment.