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: Ie93f55fabcfcad8d341b61a3a64dc14515aa2311
This commit is contained in:
Doug Hellmann 2015-06-29 21:18:12 +00:00 committed by Matthew Treinish
parent f6a36b00a8
commit 02d04cff86
No known key found for this signature in database
GPG Key ID: FD12A0F214C9E177
12 changed files with 18 additions and 18 deletions

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo.config import cfg
from oslo_config import cfg
import pandas as pd
from subunit2sql.db import api

View File

@ -14,7 +14,7 @@
import matplotlib
import matplotlib.pyplot as plt
from oslo.config import cfg
from oslo_config import cfg
import pandas as pd
from subunit2sql.db import api

View File

@ -12,7 +12,7 @@
# License for the specific language governing permissions and limitations
# under the License.
from oslo.config import cfg
from oslo_config import cfg
import pandas as pd
from subunit2sql.analysis import utils

View File

@ -14,7 +14,7 @@
import matplotlib
import matplotlib.pyplot as plt
from oslo.config import cfg
from oslo_config import cfg
import pandas as pd
from subunit2sql.analysis import utils

View File

@ -14,9 +14,9 @@
import datetime
from oslo.config import cfg
from oslo.db.sqlalchemy import session as db_session
from oslo.db.sqlalchemy import utils as db_utils
from oslo_config import cfg
from oslo_db.sqlalchemy import session as db_session
from oslo_db.sqlalchemy import utils as db_utils
from subunit2sql.db import models
from subunit2sql import exceptions

View File

@ -15,7 +15,7 @@
import datetime
import uuid
from oslo.db.sqlalchemy import models # noqa
from oslo_db.sqlalchemy import models # noqa
import sqlalchemy as sa
from sqlalchemy.ext import declarative

View File

@ -20,8 +20,8 @@ from alembic import command as alembic_command
from alembic import config as alembic_config
from alembic import script as alembic_script
from alembic import util as alembic_util
from oslo.config import cfg
from oslo.db import options
from oslo_config import cfg
from oslo_db import options
from subunit2sql.db import api as db_api

View File

@ -28,8 +28,8 @@ import os
from alembic import context
from alembic import op
from oslo.config import cfg
from oslo.db.sqlalchemy import utils as db_utils
from oslo_config import cfg
from oslo_db.sqlalchemy import utils as db_utils
import sqlalchemy as sa
from subunit2sql.db import api as db_api

View File

@ -25,7 +25,7 @@ revision = '5332fe255095'
down_revision = '28ac1ba9c3db'
from oslo.db.sqlalchemy import utils as db_utils
from oslo_db.sqlalchemy import utils as db_utils
from subunit2sql.db import api as db_api
from subunit2sql.db import models

View File

@ -16,8 +16,8 @@
import copy
import sys
from oslo.config import cfg
from oslo.db import options
from oslo_config import cfg
from oslo_db import options
from pbr import version
from subunit2sql.db import api

View File

@ -22,8 +22,8 @@ import subprocess
from alembic import config
from alembic import script
from oslo.config import cfg
from oslo.db import options
from oslo_config import cfg
from oslo_db import options
import six
from six.moves.urllib import parse
import sqlalchemy

View File

@ -17,7 +17,7 @@ import datetime
import functools
import sys
from oslo.config import cfg
from oslo_config import cfg
import subunit
from subunit import iso8601