Drop use of 'oslo' namespace package

The Oslo libraries have moved all of their code out of the 'oslo'
namespace package into per-library packages. The namespace package was
retained during kilo for backwards compatibility, but will be removed by
the liberty-2 milestone. This change removes the use of the namespace
package, replacing it with the new package names.

The patches in the libraries will be put on hold until application
patches have landed, or L2, whichever comes first. At that point, new
versions of the libraries without namespace packages will be released as
a major version update.

Please merge this patch, or an equivalent, before L2 to avoid problems
with those library releases.

Blueprint: remove-namespace-packages
https://blueprints.launchpad.net/oslo-incubator/+spec/remove-namespace-packages

Change-Id: I5d325e9397404211df00d9e39195b63d9a2f2e76
This commit is contained in:
Doug Hellmann 2015-05-06 19:37:48 +00:00
parent 6ec80dfdeb
commit 1bb107cf0d
8 changed files with 14 additions and 14 deletions

View File

@ -18,8 +18,8 @@ import logging
import os import os
import socket import socket
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
from oslo.utils import encodeutils from oslo_utils import encodeutils
import requests import requests
import six import six
from six.moves.urllib import parse from six.moves.urllib import parse

View File

@ -28,9 +28,9 @@ import uuid
import warnings import warnings
import zipfile import zipfile
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
from oslo.utils import encodeutils from oslo_utils import encodeutils
from oslo.utils import importutils from oslo_utils import importutils
import prettytable import prettytable
import requests import requests
import six import six

View File

@ -26,8 +26,8 @@ Base utilities to build API operation managers and objects on top of.
import abc import abc
import copy import copy
from oslo.utils import strutils from oslo_utils import strutils
from oslo.utils import uuidutils from oslo_utils import uuidutils
import six import six
from six.moves.urllib import parse from six.moves.urllib import parse

View File

@ -35,7 +35,7 @@ except ImportError:
import requests import requests
from oslo.utils import importutils from oslo_utils import importutils
from muranoclient.openstack.common.apiclient import exceptions from muranoclient.openstack.common.apiclient import exceptions
from muranoclient.openstack.common.gettextutils import _ from muranoclient.openstack.common.gettextutils import _

View File

@ -28,9 +28,9 @@ import prettytable
import six import six
from six import moves from six import moves
from oslo.utils import encodeutils from oslo_utils import encodeutils
from oslo.utils import strutils from oslo_utils import strutils
from oslo.utils import uuidutils from oslo_utils import uuidutils
from muranoclient.openstack.common.apiclient import exceptions from muranoclient.openstack.common.apiclient import exceptions
from muranoclient.openstack.common.gettextutils import _ from muranoclient.openstack.common.gettextutils import _

View File

@ -24,7 +24,7 @@ import sys
import glanceclient import glanceclient
from keystoneclient.v2_0 import client as ksclient from keystoneclient.v2_0 import client as ksclient
from oslo.utils import encodeutils from oslo_utils import encodeutils
import six import six
from muranoclient import client as apiclient from muranoclient import client as apiclient

View File

@ -11,7 +11,7 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
class FakeHTTPResponse(): class FakeHTTPResponse():

View File

@ -15,7 +15,7 @@
import logging import logging
import urllib import urllib
from oslo.serialization import jsonutils from oslo_serialization import jsonutils
import yaml import yaml
from muranoclient.common import base from muranoclient.common import base