Let us walk on the 3-isogeny graph
Loading...
Searching...
No Matches
pip._internal.commands.freeze Namespace Reference

Data Structures

class  FreezeCommand
 

Functions

bool _should_suppress_build_backends ()
 
AbstractSet[str] _dev_pkgs ()
 

Function Documentation

◆ _dev_pkgs()

AbstractSet[str] _dev_pkgs ( )
protected

Definition at line 16 of file freeze.py.

16def _dev_pkgs() -> AbstractSet[str]:
17 pkgs = {"pip"}
18
19 if _should_suppress_build_backends():
20 pkgs |= {"setuptools", "distribute", "wheel"}
21
22 return pkgs
23
24

References pip._internal.commands.freeze._should_suppress_build_backends().

Referenced by FreezeCommand.add_options(), and FreezeCommand.run().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ _should_suppress_build_backends()

bool _should_suppress_build_backends ( )
protected

Definition at line 12 of file freeze.py.

12def _should_suppress_build_backends() -> bool:
13 return sys.version_info < (3, 12)
14
15
for i

References i.

Referenced by pip._internal.commands.freeze._dev_pkgs().

Here is the caller graph for this function: