We are stoked to announce the release of: python-searchlightclient 1.1.0: OpenStack Indexing and Search API Client Library This release is part of the ocata release series. The source is available from: http://git.openstack.org/cgit/openstack/python-searchlightclient Download the package from: https://pypi.python.org/pypi/python-searchlightclient Please report issues through launchpad: http://bugs.launchpad.net/python-searchlightclient For more details, please see below. Changes in python-searchlightclient 1.0.0..1.1.0 ------------------------------------------------ 85497f4 Add client doc details eabf186 Updated from global requirements fb3e260 Replace six.iteritems() with .items() b820a1e Show team and repo badges on README 5890d7c Updated from global requirements 63c1eaa no longer use oslo-incubator code 1422f77 Updated from global requirements cb1f99b Don't include openstack/common in flake8 exclude list 3289aa7 Add Python 3.5 classifier and venv 6f04f71 Remove white space between print and () bdf3095 Replace 'MagicMock' with 'Mock' 48c6682 Drop MANIFEST.in - it's not needed by pbr 002a82d Add plug-in summary for osc doc c3cf67f Remove circular TOC reference 44bed80 Update homepage with developer documentation page 8ac0b8b Do not process additional fields in search response 3cf93f7 TrivialFix: Remove logging import unused Diffstat (except docs and test files) ------------------------------------- MANIFEST.in | 10 - README.rst | 9 + openstack-common.conf | 8 - requirements.txt | 16 +- searchlightclient/common/base.py | 532 +++++++++++++++++++++ searchlightclient/common/exceptions.py | 479 +++++++++++++++++++ searchlightclient/common/utils.py | 21 +- searchlightclient/exc.py | 2 +- searchlightclient/i18n.py | 35 ++ searchlightclient/openstack/__init__.py | 0 searchlightclient/openstack/common/__init__.py | 0 searchlightclient/openstack/common/_i18n.py | 45 -- .../openstack/common/apiclient/__init__.py | 0 .../openstack/common/apiclient/auth.py | 234 --------- .../openstack/common/apiclient/base.py | 532 --------------------- .../openstack/common/apiclient/client.py | 388 --------------- .../openstack/common/apiclient/exceptions.py | 479 ------------------- .../openstack/common/apiclient/fake_client.py | 190 -------- .../openstack/common/apiclient/utils.py | 100 ---- searchlightclient/openstack/common/cliutils.py | 271 ----------- searchlightclient/osc/plugin.py | 4 +- searchlightclient/osc/v1/facet.py | 3 +- searchlightclient/osc/v1/search.py | 18 +- searchlightclient/v1/facets.py | 2 +- searchlightclient/v1/resource_types.py | 2 +- searchlightclient/v1/search.py | 6 +- setup.cfg | 3 +- test-requirements.txt | 6 +- tox.ini | 4 +- 36 files changed, 1190 insertions(+), 2312 deletions(-) Requirements updates -------------------- diff --git a/requirements.txt b/requirements.txt index 1b7a856..58a45b0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,3 +6,3 @@ Babel>=2.3.4 # BSD -pbr>=1.6 # Apache-2.0 -osc-lib>=1.0.2 # Apache-2.0 -PrettyTable<0.8,>=0.7 # BSD +pbr>=1.8 # Apache-2.0 +osc-lib>=1.2.0 # Apache-2.0 +PrettyTable<0.8,>=0.7.1 # BSD @@ -11,5 +11,5 @@ oslo.serialization>=1.10.0 # Apache-2.0 -oslo.utils>=3.16.0 # Apache-2.0 -python-keystoneclient!=2.1.0,>=2.0.0 # Apache-2.0 -python-openstackclient>=2.1.0 # Apache-2.0 -PyYAML>=3.1.0 # MIT -requests>=2.10.0 # Apache-2.0 +oslo.utils>=3.18.0 # Apache-2.0 +python-keystoneclient>=3.8.0 # Apache-2.0 +python-openstackclient>=3.3.0 # Apache-2.0 +PyYAML>=3.10.0 # MIT +requests!=2.12.2,>=2.10.0 # Apache-2.0 diff --git a/test-requirements.txt b/test-requirements.txt index 2dc9597..47b27db 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -7 +7 @@ hacking<0.11,>=0.10.2 -coverage>=3.6 # Apache-2.0 +coverage>=4.0 # Apache-2.0 @@ -10,2 +10,2 @@ mock>=2.0 # BSD -oslosphinx!=3.4.0,>=2.5.0 # Apache-2.0 -sphinx!=1.3b1,<1.3,>=1.2.1 # BSD +oslosphinx>=4.7.0 # Apache-2.0 +sphinx!=1.3b1,<1.4,>=1.2.1 # BSD