Dave Walker (Daviey) <email@daviey.com>
David Ripton <dripton@redhat.com>
David Stanek <dstanek@dstanek.com>
+Dennis Verspuij <dennisverspuij@users.noreply.github.com>
Devananda van der Veen <devananda.vdv@gmail.com>
Dirk Mueller <dirk@dmllr.de>
Doug Hellmann <doug.hellmann@dreamhost.com>
lifeless <robertc@robertcollins.net>
melanie witt <melwitt@yahoo-inc.com>
nizam <abdul.nizamuddin@nectechnologies.in>
+qingszhao <zhao.daqing@99cloud.net>
weiweigu <gu.weiwei@zte.com.cn>
zhangyangyang <zhangyangyang@unionpay.com>
zhangyanxian <zhang.yanxian@zte.com.cn>
CHANGES
=======
+4.1.0
+-----
+
+* Update python3 versions in tox.ini envlist
+* fix tox python3 overrides
+* Support python-requires metadata
+
4.0.4
-----
* Revert "Remove win32/nt checks for wrapper script gen"
+* Add leading 0 on alpha release in semver doc
4.0.3
-----
Metadata-Version: 2.1
Name: pbr
-Version: 4.0.4
+Version: 4.1.0
Summary: Python Build Reasonableness
Home-page: https://docs.openstack.org/pbr/latest/
Author: OpenStack
New Features
------------
-.. releasenotes/notes/v_version-457b38c8679c5868.yaml @ 4c775e7890e90fc2ea77c66020659e52d6a61414
+.. releasenotes/notes/v_version-457b38c8679c5868.yaml @ b'4c775e7890e90fc2ea77c66020659e52d6a61414'
- Support version parsing of git tag with the ``v<semver>`` pattern
(or ``V<semver>``), in addition to ``<semver>``.
Upgrade Notes
-------------
-.. releasenotes/notes/remove-command-hooks-907d9c2325f306ca.yaml @ 32c90ba598d7740e52bf21bc5e920fb5df08645a
+.. releasenotes/notes/remove-command-hooks-907d9c2325f306ca.yaml @ b'32c90ba598d7740e52bf21bc5e920fb5df08645a'
- Support for entry point command hooks has been removed. This feature was
poorly tested, poorly documented, and broken in some environments.
Deprecation Notes
-----------------
-.. releasenotes/notes/deprecate-pyN-requirements-364655c38fa5b780.yaml @ 9be181e8e60cc41f3ad685e236b0c4cdc29dbd3c
+.. releasenotes/notes/deprecate-pyN-requirements-364655c38fa5b780.yaml @ b'9be181e8e60cc41f3ad685e236b0c4cdc29dbd3c'
- Support for ``pyN``-suffixed requirement files has been deprecated:
environment markers should be used instead.
-.. releasenotes/notes/deprecate-testr-nose-integration-56e3e11248d946fc.yaml @ 113685e1b94df9dd2945adbdda757a545b09598c
+.. releasenotes/notes/deprecate-testr-nose-integration-56e3e11248d946fc.yaml @ b'113685e1b94df9dd2945adbdda757a545b09598c'
- *testr* and *nose* integration has been deprecated. This feature allowed
*pbr* to dynamically configure the test runner used when running
feasible.
#. All versions have been made PEP-440 compatible, because of our deep
- roots in Python. Pre-release versions are now separated by . not -, and
- use a/b/c rather than alpha/beta etc.
+ roots in Python:
+
+ - Pre-release versions are now separated by . not -, and use a/b/c
+ rather than alpha/beta etc.
+ - Alpha version are prefixed by a 0 such as: ``2.0.0.0a1`` instead of
+ ``2.0.0.a1`` for version '2.0.0 alpha 1'. Please note dev version tag
+ does not have a leading 0, as is ``2.0.0.0a2.dev1``.
Summary
-------
version. A pre-release version indicates that
the version is unstable and might not satisfy the intended
compatibility requirements as denoted by its associated normal
- version. Examples: 1.0.0.a1, 1.0.0.b99, 1.0.0.c1000.
+ version. Examples: 1.0.0.0a1, 1.0.0.0b99, 1.0.0.0c1000.
#. A development version MAY be denoted by appending a dot separated
identifier immediately following the patch version.
externally facing communication of not-yet-released ideas. Dev versions
are not public artifacts and should never be placed in public
repositories: they are intended as developer-local resources. Examples:
- 1.0.0.dev1, 1.0.0.a1.dev1
+ 1.0.0.dev1, 1.0.0.0a1.dev1
#. git version metadata MAY be denoted by appending a dot separated
identifier immediately following a development or pre-release version.
character git short-sha. The sha MUST NOT be empty. git version
metadata MUST be ignored when determining version precedence. Thus
two versions that differ only in the git version, have the same
- precedence. Example: 1.0.0.a1.g95a9beb.
+ precedence. Example: 1.0.0.0a1.g95a9beb.
#. Build metadata MAY be denoted by appending a plus sign and a series
of dot separated identifiers immediately following the patch or
alphanumerics [0-9A-Za-z]. Identifiers MUST NOT be empty. Build
metadata MUST be ignored when determining version precedence. Thus
two versions that differ only in the build metadata, have the same
- precedence. Examples: 1.0.0.a1+001, 1.0.0+20130313144700,
- 1.0.0.b1+exp.sha.5114f85.
+ precedence. Examples: 1.0.0.0a1+001, 1.0.0+20130313144700,
+ 1.0.0.0b1+exp.sha.5114f85.
#. Precedence refers to how versions are compared to each other when
ordered. Precedence MUST be calculated by separating the version
versions are always compared numerically. Example: 1.0.0 < 2.0.0 <
2.1.0 < 2.1.1. When major, minor, and patch are equal, a pre-release
version has lower precedence than a normal version. Example:
- 1.0.0.a1 < 1.0.0. When major, minor, patch and pre-release are equal, a
+ 1.0.0.0a1 < 1.0.0. When major, minor, patch and pre-release are equal, a
development version has a lower precedence than a normal version and of a
pre-release version. Example: 1.0.0.dev1 < 1.0.0 and 1.0.0.dev9 <
- 1.0.0.a1 and 1.0.0.a1 < 1.0.0.a2.dev4. Precedence for two pre-release
+ 1.0.0.0a1 and 1.0.0.0a1 < 1.0.0.0a2.dev4. Precedence for two pre-release
versions with the same major, minor, and patch version MUST be determined
by comparing the identifier to the right of the patch version as follows:
if the alpha portion matches, the numeric portion is compared in
numerical sort order. If the alpha portion does not match, the sort order
- is dev < a < b < c. Example: 1.0.0.dev8 < 1.0.0.dev9 < 1.0.0.a1.dev3 <
- 1.0.0.a1 < 1.0.0.b2 < 1.0.0.c1 < 1.0.0. Precedence for dev versions if
+ is dev < a < b < c. Example: 1.0.0.dev8 < 1.0.0.dev9 < 1.0.0.0a1.dev3 <
+ 1.0.0.0a1 < 1.0.0.0b2 < 1.0.0.0c1 < 1.0.0. Precedence for dev versions if
all other components are equal is done by comparing their numeric
component. If all other components are not equal, predence is determined
by comparing the other components.
Metadata-Version: 2.1
Name: pbr
-Version: 4.0.4
+Version: 4.1.0
Summary: Python Build Reasonableness
Home-page: https://docs.openstack.org/pbr/latest/
Author: OpenStack
# broken distutils requires
"install_requires": ("metadata", "requires_dist"),
"setup_requires": ("metadata", "setup_requires_dist"),
+ "python_requires": ("metadata",),
"provides": ("metadata", "provides_dist"), # **
"obsoletes": ("metadata", "obsoletes_dist"), # **
"package_dir": ("files", 'packages_root'),
']
notes:
- files:
- - [releasenotes/notes/deprecate-pyN-requirements-364655c38fa5b780.yaml, 9be181e8e60cc41f3ad685e236b0c4cdc29dbd3c]
- - [releasenotes/notes/deprecate-testr-nose-integration-56e3e11248d946fc.yaml, 113685e1b94df9dd2945adbdda757a545b09598c]
- - [releasenotes/notes/remove-command-hooks-907d9c2325f306ca.yaml, 32c90ba598d7740e52bf21bc5e920fb5df08645a]
- - [releasenotes/notes/v_version-457b38c8679c5868.yaml, 4c775e7890e90fc2ea77c66020659e52d6a61414]
+ - - releasenotes/notes/deprecate-pyN-requirements-364655c38fa5b780.yaml
+ - !!binary |
+ OWJlMTgxZThlNjBjYzQxZjNhZDY4NWUyMzZiMGM0Y2RjMjlkYmQzYw==
+ - - releasenotes/notes/deprecate-testr-nose-integration-56e3e11248d946fc.yaml
+ - !!binary |
+ MTEzNjg1ZTFiOTRkZjlkZDI5NDVhZGJkZGE3NTdhNTQ1YjA5NTk4Yw==
+ - - releasenotes/notes/remove-command-hooks-907d9c2325f306ca.yaml
+ - !!binary |
+ MzJjOTBiYTU5OGQ3NzQwZTUyYmYyMWJjNWU5MjBmYjVkZjA4NjQ1YQ==
+ - - releasenotes/notes/v_version-457b38c8679c5868.yaml
+ - !!binary |
+ NGM3NzVlNzg5MGU5MGZjMmVhNzdjNjYwMjA2NTllNTJkNmE2MTQxNA==
version: 4.0.0
[tox]
minversion = 2.0
-envlist = py33,py34,py35,py36,py27,pypy,pep8,docs
+envlist = py35,py36,py27,pypy,pep8,docs
[testenv]
usedevelop = True
sitepackages = True
[testenv:pep8]
+basepython = python3
commands = flake8 {posargs}
[testenv:docs]
+basepython = python3
commands = python setup.py build_sphinx
[testenv:releasenotes]
+basepython = python3
commands = bash -c {toxinidir}/tools/tox_releasenotes.sh
[testenv:cover]
+basepython = python3
commands =
python setup.py test --coverage
[testenv:venv]
+basepython = python3
commands = {posargs}
[flake8]