Remove unused httplib2

The httlib2 library was added to be used by google backup driver[1],
but it was then replaced by google-auth-httplib2 .

[1] cf5653c17c1dce2a85ced8b6969a0503d5cca416
[2] 79d7a4e8da6f1118b5c235928876cf78085f4332

Change-Id: I1635ee8e5bd3b257ed64070a590a3820a2682667
This commit is contained in:
Takashi Kajinami 2024-09-22 21:20:31 +09:00
parent 362cc6096e
commit 0f4c0c7a18
2 changed files with 1 additions and 3 deletions
cinder/tests/unit/backup/drivers
requirements.txt

@ -237,8 +237,7 @@ class GoogleBackupDriverTestCase(test.TestCase):
self.assertEqual('gcscinderbucket', backup.container)
@gcs_client
@mock.patch('httplib2.proxy_info_from_url')
def test_backup_proxy_configured(self, mock_proxy_info):
def test_backup_proxy_configured(self):
# Configuration overwrites enviromental variable
proxy_cfg = "http://myproxy.example.com"
os.environ['http_proxy'] = proxy_cfg + '_fake'

@ -6,7 +6,6 @@ pbr>=5.8.0 # Apache-2.0
decorator>=4.4.2 # BSD
eventlet>=0.30.1,!=0.32.0 # MIT
greenlet>=0.4.16 # MIT
httplib2>=0.18.1 # MIT
iso8601>=0.1.12 # MIT
jsonschema>=3.2.0 # MIT
keystoneauth1>=4.2.1 # Apache-2.0