File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1057,6 +1057,7 @@ def venv_resolve_deps(
10571057 deps = convert_deps_to_pip (deps , project , include_index = True )
10581058 constraints = set (deps )
10591059 st .console .print ("Resolving dependencies..." )
1060+ # Useful for debugging and hitting breakpoints in the resolver
10601061 if project .s .PIPENV_RESOLVER_PARENT_PYTHON :
10611062 try :
10621063 results = resolver .resolve_packages (
@@ -1079,7 +1080,7 @@ def venv_resolve_deps(
10791080 environments .PIPENV_SPINNER_FAIL_TEXT .format ("Locking Failed!" )
10801081 )
10811082 raise
1082- else : # Default behavior is to use project python's resolver
1083+ else : # Default/Production behavior is to use project python's resolver
10831084 cmd = [
10841085 which ("python" , allow_global = allow_global ),
10851086 Path (resolver .__file__ .rstrip ("co" )).as_posix (),
You can’t perform that action at this time.
0 commit comments