Searched refs:ensurepip (Results 1 - 7 of 7) sorted by relevance
/third_party/python/Lib/test/ |
H A D | test_ensurepip.py | 10 import ensurepip namespace 11 import ensurepip._uninstall namespace 24 with (unittest.mock.patch.object(ensurepip, '_PACKAGES', None), 25 unittest.mock.patch.object(ensurepip, '_WHEEL_PKG_DIR', tmpdir)): 26 self.assertEqual(ensurepip.version(), '1.2.3b1') 30 with (unittest.mock.patch.object(ensurepip, '_PACKAGES', None), 31 unittest.mock.patch.object(ensurepip, '_WHEEL_PKG_DIR', None)): 32 packages = ensurepip._get_packages() 35 self.assertEqual(ensurepip._PIP_VERSION, ensurepip [all...] |
H A D | test_venv.py | 9 import ensurepip namespace 657 # ensurepip is different enough from a normal pip invocation 660 # to check that ensurepip (and hence venv) ignores it. 697 expected_version = "pip {}".format(ensurepip.version()) 707 # It seems ensurepip._uninstall calls subprocesses which do not 713 '-m', 'ensurepip._uninstall'])
|
/third_party/python/Lib/ensurepip/ |
H A D | _uninstall.py | 4 import ensurepip namespace 9 parser = argparse.ArgumentParser(prog="python -m ensurepip._uninstall") 13 version="pip {}".format(ensurepip.version()), 27 return ensurepip._uninstall_helper(verbosity=args.verbosity)
|
H A D | __main__.py | 1 import ensurepip namespace 5 sys.exit(ensurepip._main())
|
/third_party/python/Tools/scripts/ |
H A D | checkpip.py | 3 Checks that the version of the projects bundled in ensurepip are the latest 6 import ensurepip namespace 15 for project, version in ensurepip._PROJECTS: 24 print("The latest version of {} on PyPI is {}, but ensurepip "
|
/third_party/python/Mac/BuildScript/scripts/ |
H A D | postflight.ensurepip | 13 "${FWK}/bin/python${PYVER}" -E -s -m ensurepip --upgrade
|
/third_party/python/ |
H A D | configure | 1868 Directory of wheel packages used by ensurepip 1874 --with-ensurepip[=install|upgrade|no] 25339 # ensurepip option 25340 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ensurepip" >&5 25341 printf %s "checking for ensurepip... " >&6; } 25343 # Check whether --with-ensurepip was given. 25369 as_fn_error $? "--with-ensurepip=upgrade|install|no" "$LINENO" 5 ;;
|
Completed in 24 milliseconds