drop mock from lower-constraints and requirements

The mock third party library was needed for mock support in py2
runtimes. Since we now only support py36 and later, we don't need it
in lower-constraints and requirements.

These changes will help us to drop `mock` from openstack/requirements

Change-Id: I4d7b11ac4ac5725ad0605b03ddabed22bad8d0d3
This commit is contained in:
Hervé Beraud 2020-06-09 12:07:49 +02:00
parent 8e84ccdcbd
commit cb7b813cfe
2 changed files with 1 additions and 2 deletions

View File

@ -5,4 +5,3 @@ stestr>=2.0.0 # Apache-2.0
testresources>=2.0.0 # Apache-2.0/BSD
testtools>=2.2.0 # MIT
ddt>=1.0.1 # MIT
mock>=2.0.0 # BSD

View File

@ -22,7 +22,7 @@ from ddt import data, ddt, unpack
from jinja2 import Environment
from jinja2.exceptions import TemplateRuntimeError
from mock import Mock, patch
from unittest.mock import Mock, patch
import os
import renderspec
import renderspec.contextfuncs