Start of renaming charmers.openstack to charms_openstack

This is probably 1 of 3 commits to rename the module to charms_openstack
which will enable it to live happily alongside charms.reactive without
conflicting with it's namespace - and also taking over the charmers
namespace.
This commit is contained in:
Alex Kavanagh 2016-05-20 17:06:31 +00:00
parent 1e62e8978d
commit b82302808a
6 changed files with 6 additions and 6 deletions

View File

@ -17,7 +17,7 @@ import charmhelpers.core.templating
import charmhelpers.fetch
import charms.reactive.bus
import charmers.openstack.ip as os_ip
import charms_openstack.ip as os_ip
class OpenStackCharmMeta(type):

View File

@ -49,7 +49,7 @@ if sys.argv[-1] == 'tag':
setup(
name='charmers.openstack',
name='charms_openstack',
version=version,
description='Provide base module for layer-openstack.',
classifiers=[

View File

@ -16,7 +16,7 @@ deps = -r{toxinidir}/test-requirements.txt
[testenv:pep8]
basepython = python2.7
deps = -r{toxinidir}/test-requirements.txt
commands = flake8 {posargs} charmers unit_tests
commands = flake8 {posargs} charms_openstack unit_tests
[testenv:venv]
commands = {posargs}

View File

@ -9,7 +9,7 @@
import unittest
import mock
import charmers.openstack.adapters as adapters
import charms_openstack.adapters as adapters
class MyRelation(object):

View File

@ -9,7 +9,7 @@ import mock
import utils
import charmers.openstack.charm as chm
import charms_openstack.charm as chm
TEST_CONFIG = {'config': True}

View File

@ -8,7 +8,7 @@
import utils
import charmers.openstack.ip as ip
import charms_openstack.ip as ip
class TestCharmOpenStackIp(utils.BaseTestCase):