Hello community, here is the log from the commit of package python-wheel for openSUSE:Factory checked in at 2019-03-04 09:10:42 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-wheel (Old) and /work/SRC/openSUSE:Factory/.python-wheel.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-wheel" Mon Mar 4 09:10:42 2019 rev:18 rq:680409 version:0.33.1 Changes: -------- --- /work/SRC/openSUSE:Factory/python-wheel/python-wheel.changes 2019-02-25 17:45:39.742899988 +0100 +++ /work/SRC/openSUSE:Factory/.python-wheel.new.28833/python-wheel.changes 2019-03-04 09:10:44.088704310 +0100 @@ -1,0 +2,6 @@ +Fri Mar 1 09:36:15 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Update to 0.33.1: + * Fixed the ``--build-number`` option for ``wheel pack`` not being applied + +------------------------------------------------------------------- Old: ---- wheel-0.33.0.tar.gz New: ---- wheel-0.33.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-wheel.spec ++++++ --- /var/tmp/diff_new_pack.o6kSSZ/_old 2019-03-04 09:10:44.916704171 +0100 +++ /var/tmp/diff_new_pack.o6kSSZ/_new 2019-03-04 09:10:44.916704171 +0100 @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-wheel -Version: 0.33.0 +Version: 0.33.1 Release: 0 Summary: A built-package format for Python License: MIT ++++++ wheel-0.33.0.tar.gz -> wheel-0.33.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wheel-0.33.0/docs/news.rst new/wheel-0.33.1/docs/news.rst --- old/wheel-0.33.0/docs/news.rst 2019-02-12 07:58:33.000000000 +0100 +++ new/wheel-0.33.1/docs/news.rst 2019-02-19 15:03:57.000000000 +0100 @@ -1,6 +1,10 @@ Release Notes ============= +**0.33.1** + +- Fixed the ``--build-number`` option for ``wheel pack`` not being applied + **0.33.0** - Added the ``--build-number`` option to the ``wheel pack`` command diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wheel-0.33.0/wheel/__init__.py new/wheel-0.33.1/wheel/__init__.py --- old/wheel-0.33.0/wheel/__init__.py 2019-02-12 07:58:33.000000000 +0100 +++ new/wheel-0.33.1/wheel/__init__.py 2019-02-19 15:03:57.000000000 +0100 @@ -1,2 +1,2 @@ # __variables__ with double-quoted values will be available in setup.py: -__version__ = "0.33.0" +__version__ = "0.33.1" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wheel-0.33.0/wheel/cli/__init__.py new/wheel-0.33.1/wheel/cli/__init__.py --- old/wheel-0.33.0/wheel/cli/__init__.py 2019-02-12 07:58:33.000000000 +0100 +++ new/wheel-0.33.1/wheel/cli/__init__.py 2019-02-19 15:03:57.000000000 +0100 @@ -27,7 +27,7 @@ def pack_f(args): from .pack import pack - pack(args.directory, args.dest_dir) + pack(args.directory, args.dest_dir, args.build_number) def convert_f(args): diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wheel-0.33.0/wheel/cli/pack.py new/wheel-0.33.1/wheel/cli/pack.py --- old/wheel-0.33.0/wheel/cli/pack.py 2019-02-12 07:58:33.000000000 +0100 +++ new/wheel-0.33.1/wheel/cli/pack.py 2019-02-19 15:03:57.000000000 +0100 @@ -10,7 +10,7 @@ DIST_INFO_RE = re.compile(r"^(?P<namever>(?P<name>.+?)-(?P<ver>\d.*?))\.dist-info$") -def pack(directory, dest_dir, build_number=None): +def pack(directory, dest_dir, build_number): """Repack a previously unpacked wheel directory into a new wheel file. The .dist-info/WHEEL file must contain one or more tags so that the target
