mirror of
				https://github.com/python/cpython.git
				synced 2025-10-31 21:51:50 +00:00 
			
		
		
		
	Update pip to the released 1.5
This commit is contained in:
		
							parent
							
								
									c70d4f4d79
								
							
						
					
					
						commit
						f7f58f8db5
					
				
					 3 changed files with 10 additions and 16 deletions
				
			
		|  | @ -52,7 +52,7 @@ def test_basic_bootstrapping(self): | |||
|         self.run_pip.assert_called_once_with( | ||||
|             [ | ||||
|                 "install", "--no-index", "--find-links", | ||||
|                 unittest.mock.ANY, "--pre", "setuptools", "pip", | ||||
|                 unittest.mock.ANY, "setuptools", "pip", | ||||
|             ], | ||||
|             unittest.mock.ANY, | ||||
|         ) | ||||
|  | @ -67,7 +67,7 @@ def test_bootstrapping_with_root(self): | |||
|         self.run_pip.assert_called_once_with( | ||||
|             [ | ||||
|                 "install", "--no-index", "--find-links", | ||||
|                 unittest.mock.ANY, "--pre", "--root", "/foo/bar/", | ||||
|                 unittest.mock.ANY, "--root", "/foo/bar/", | ||||
|                 "setuptools", "pip", | ||||
|             ], | ||||
|             unittest.mock.ANY, | ||||
|  | @ -80,7 +80,7 @@ def test_bootstrapping_with_user(self): | |||
|         self.run_pip.assert_called_once_with( | ||||
|             [ | ||||
|                 "install", "--no-index", "--find-links", | ||||
|                 unittest.mock.ANY, "--pre", "--user", "setuptools", "pip", | ||||
|                 unittest.mock.ANY, "--user", "setuptools", "pip", | ||||
|             ], | ||||
|             unittest.mock.ANY, | ||||
|         ) | ||||
|  | @ -92,7 +92,7 @@ def test_bootstrapping_with_upgrade(self): | |||
|         self.run_pip.assert_called_once_with( | ||||
|             [ | ||||
|                 "install", "--no-index", "--find-links", | ||||
|                 unittest.mock.ANY, "--pre", "--upgrade", "setuptools", "pip", | ||||
|                 unittest.mock.ANY, "--upgrade", "setuptools", "pip", | ||||
|             ], | ||||
|             unittest.mock.ANY, | ||||
|         ) | ||||
|  | @ -104,7 +104,7 @@ def test_bootstrapping_with_verbosity_1(self): | |||
|         self.run_pip.assert_called_once_with( | ||||
|             [ | ||||
|                 "install", "--no-index", "--find-links", | ||||
|                 unittest.mock.ANY, "--pre", "-v", "setuptools", "pip", | ||||
|                 unittest.mock.ANY, "-v", "setuptools", "pip", | ||||
|             ], | ||||
|             unittest.mock.ANY, | ||||
|         ) | ||||
|  | @ -116,7 +116,7 @@ def test_bootstrapping_with_verbosity_2(self): | |||
|         self.run_pip.assert_called_once_with( | ||||
|             [ | ||||
|                 "install", "--no-index", "--find-links", | ||||
|                 unittest.mock.ANY, "--pre", "-vv", "setuptools", "pip", | ||||
|                 unittest.mock.ANY, "-vv", "setuptools", "pip", | ||||
|             ], | ||||
|             unittest.mock.ANY, | ||||
|         ) | ||||
|  | @ -128,7 +128,7 @@ def test_bootstrapping_with_verbosity_3(self): | |||
|         self.run_pip.assert_called_once_with( | ||||
|             [ | ||||
|                 "install", "--no-index", "--find-links", | ||||
|                 unittest.mock.ANY, "--pre", "-vvv", "setuptools", "pip", | ||||
|                 unittest.mock.ANY, "-vvv", "setuptools", "pip", | ||||
|             ], | ||||
|             unittest.mock.ANY, | ||||
|         ) | ||||
|  | @ -286,7 +286,7 @@ def test_basic_bootstrapping(self): | |||
|         self.run_pip.assert_called_once_with( | ||||
|             [ | ||||
|                 "install", "--no-index", "--find-links", | ||||
|                 unittest.mock.ANY, "--pre", "setuptools", "pip", | ||||
|                 unittest.mock.ANY, "setuptools", "pip", | ||||
|             ], | ||||
|             unittest.mock.ANY, | ||||
|         ) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Donald Stufft
						Donald Stufft