Preparing release 0.4.1
Change-Id: I549c749bcef38d997ec7a49da7478c90655066b4
This commit is contained in:
@@ -2,10 +2,10 @@
|
||||
# of appearance. Changing the order has an impact on the overall integration
|
||||
# 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
|
||||
python-keystoneclient
|
||||
stevedore
|
||||
oslo.i18n
|
||||
oslo.serialization
|
||||
oslo.utils
|
||||
python-keystoneclient<1.4.0,>=1.2.0
|
||||
stevedore<1.4.0,>=1.3.0 # Apache-2.0
|
||||
oslo.i18n<1.6.0,>=1.5.0 # Apache-2.0
|
||||
oslo.serialization<1.5.0,>=1.4.0 # Apache-2.0
|
||||
oslo.utils<1.5.0,>=1.4.0 # Apache-2.0
|
||||
|
@@ -1,7 +1,7 @@
|
||||
[metadata]
|
||||
name = python-cloudkittyclient
|
||||
version = 0.1
|
||||
summary = Cloudkittyclient is the api client for the cloudkitty rating project.
|
||||
version = 0.4.1
|
||||
summary = API client of cloudkitty, Rating as a Service project.
|
||||
description-file =
|
||||
README.rst
|
||||
author = OpenStack
|
||||
|
9
setup.py
Executable file → Normal file
9
setup.py
Executable file → Normal file
@@ -1,4 +1,3 @@
|
||||
#!/usr/bin/env python
|
||||
# Copyright (c) 2013 Hewlett-Packard Development Company, L.P.
|
||||
#
|
||||
# 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
|
||||
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(
|
||||
setup_requires=['pbr'],
|
||||
pbr=True)
|
||||
|
@@ -2,14 +2,14 @@
|
||||
# of appearance. Changing the order has an impact on the overall integration
|
||||
# process, which may cause wedges in the gate later.
|
||||
|
||||
hacking>=0.9.2,<0.10
|
||||
hacking<0.10,>=0.9.2
|
||||
|
||||
coverage>=3.6
|
||||
discover
|
||||
python-subunit
|
||||
sphinx>=1.1.2
|
||||
oslosphinx
|
||||
oslotest>=1.1.0.0a1
|
||||
python-subunit>=0.0.18
|
||||
sphinx!=1.2.0,!=1.3b1,<1.3,>=1.1.2
|
||||
oslosphinx<2.6.0,>=2.5.0 # Apache-2.0
|
||||
oslotest<1.6.0,>=1.5.1 # Apache-2.0
|
||||
testrepository>=0.0.18
|
||||
testscenarios>=0.4
|
||||
testtools>=0.9.34
|
||||
testtools!=1.2.0,>=0.9.36
|
||||
|
Reference in New Issue
Block a user