662cfb09c0
With the explicit "pre version" in setup.cfg, PBR generates our version as 1.2.0.a1.g2748574 and, without it, it generates 1.2.0a4.1.g2748574. which in turn causes nova to complain about: VersionConflict: (oslo.config 1.2.0.a1.g2748574 (/opt/stack/new/oslo.config), Requirement.parse('oslo.config>=1.2.0a3')) when trying to load extensions with stevedore. I'm not sure why this is suddenly an issue after 1.2.0a4 has been tagged, but removing this version is the right thing to do anyway since we want to rely on tags for all versioning info. Change-Id: I9090b8401a43befd73a82f9bb78e0b6165619c7c
38 lines
823 B
INI
38 lines
823 B
INI
[metadata]
|
|
name = oslo.config
|
|
author = OpenStack
|
|
author-email = openstack-dev@lists.openstack.org
|
|
summary = Oslo Configuration API
|
|
description-file =
|
|
README.rst
|
|
home-page = https://launchpad.net/oslo
|
|
classifier =
|
|
Development Status :: 4 - Beta
|
|
Environment :: OpenStack
|
|
Intended Audience :: Developers
|
|
Intended Audience :: Information Technology
|
|
License :: OSI Approved :: Apache Software License
|
|
Operating System :: OS Independent
|
|
Programming Language :: Python
|
|
Programming Language :: Python :: 2.6
|
|
Programming Language :: Python :: 2.7
|
|
|
|
[files]
|
|
packages =
|
|
oslo
|
|
oslo.config
|
|
namespace_packages =
|
|
oslo
|
|
|
|
[global]
|
|
setup-hooks =
|
|
pbr.hooks.setup_hook
|
|
|
|
[build_sphinx]
|
|
source-dir = doc/source
|
|
build-dir = doc/build
|
|
all_files = 1
|
|
|
|
[upload_sphinx]
|
|
upload-dir = doc/build/html
|