Preparing release 0.4.1

Change-Id: I549c749bcef38d997ec7a49da7478c90655066b4
This commit is contained in:
Stéphane Albert
2015-08-27 16:23:35 +02:00
parent 4ee7dcb3ee
commit 0696510d29
4 changed files with 22 additions and 15 deletions

View File

@@ -2,10 +2,10 @@
# of appearance. Changing the order has an impact on the overall integration # of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later. # process, which may cause wedges in the gate later.
pbr>=0.6,!=0.7,<1.0 pbr!=0.7,<1.0,>=0.6
Babel>=1.3 Babel>=1.3
python-keystoneclient python-keystoneclient<1.4.0,>=1.2.0
stevedore stevedore<1.4.0,>=1.3.0 # Apache-2.0
oslo.i18n oslo.i18n<1.6.0,>=1.5.0 # Apache-2.0
oslo.serialization oslo.serialization<1.5.0,>=1.4.0 # Apache-2.0
oslo.utils oslo.utils<1.5.0,>=1.4.0 # Apache-2.0

View File

@@ -1,7 +1,7 @@
[metadata] [metadata]
name = python-cloudkittyclient name = python-cloudkittyclient
version = 0.1 version = 0.4.1
summary = Cloudkittyclient is the api client for the cloudkitty rating project. summary = API client of cloudkitty, Rating as a Service project.
description-file = description-file =
README.rst README.rst
author = OpenStack author = OpenStack

9
setup.py Executable file → Normal file
View File

@@ -1,4 +1,3 @@
#!/usr/bin/env python
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P. # Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
# #
# Licensed under the Apache License, Version 2.0 (the "License"); # Licensed under the Apache License, Version 2.0 (the "License");
@@ -17,6 +16,14 @@
# THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT # THIS FILE IS MANAGED BY THE GLOBAL REQUIREMENTS REPO - DO NOT EDIT
import setuptools import setuptools
# In python < 2.7.4, a lazy loading of package `pbr` will break
# setuptools if some other modules registered functions in `atexit`.
# solution from: http://bugs.python.org/issue15881#msg170215
try:
import multiprocessing # noqa
except ImportError:
pass
setuptools.setup( setuptools.setup(
setup_requires=['pbr'], setup_requires=['pbr'],
pbr=True) pbr=True)

View File

@@ -2,14 +2,14 @@
# of appearance. Changing the order has an impact on the overall integration # of appearance. Changing the order has an impact on the overall integration
# process, which may cause wedges in the gate later. # process, which may cause wedges in the gate later.
hacking>=0.9.2,<0.10 hacking<0.10,>=0.9.2
coverage>=3.6 coverage>=3.6
discover discover
python-subunit python-subunit>=0.0.18
sphinx>=1.1.2 sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2
oslosphinx oslosphinx<2.6.0,>=2.5.0 # Apache-2.0
oslotest>=1.1.0.0a1 oslotest<1.6.0,>=1.5.1 # Apache-2.0
testrepository>=0.0.18 testrepository>=0.0.18
testscenarios>=0.4 testscenarios>=0.4
testtools>=0.9.34 testtools!=1.2.0,>=0.9.36