Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-hypothesis for openSUSE:Factory checked in at 2022-10-18 12:44:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-hypothesis (Old) and /work/SRC/openSUSE:Factory/.python-hypothesis.new.2275 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-hypothesis" Tue Oct 18 12:44:13 2022 rev:60 rq:1011261 version:6.56.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-hypothesis/python-hypothesis.changes 2022-10-12 18:23:03.537419753 +0200 +++ /work/SRC/openSUSE:Factory/.python-hypothesis.new.2275/python-hypothesis.changes 2022-10-18 12:44:17.565627140 +0200 @@ -1,0 +2,10 @@ +Sun Oct 16 17:44:52 UTC 2022 - Dirk M??ller <dmuel...@suse.com> + +- update to 6.56.2: + * This patch updates our vendored `list of top-level domains + <https://www.iana.org/domains/root/db>`__, which is used by the provisional + :func:`~hypothesis.provisional.domains` strategy, and fixes some incorrect + examples in the docs for + :func:`~hypothesis.extra.numpy.mutually_broadcastable_shapes`. + +------------------------------------------------------------------- Old: ---- hypothesis-python-6.56.1.tar.gz New: ---- hypothesis-python-6.56.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-hypothesis.spec ++++++ --- /var/tmp/diff_new_pack.wMIoVY/_old 2022-10-18 12:44:18.121628406 +0200 +++ /var/tmp/diff_new_pack.wMIoVY/_new 2022-10-18 12:44:18.129628424 +0200 @@ -31,7 +31,7 @@ %bcond_with test %endif Name: python-hypothesis%{psuffix} -Version: 6.56.1 +Version: 6.56.2 Release: 0 Summary: A library for property based testing License: MPL-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.wMIoVY/_old 2022-10-18 12:44:18.173628524 +0200 +++ /var/tmp/diff_new_pack.wMIoVY/_new 2022-10-18 12:44:18.177628533 +0200 @@ -2,7 +2,7 @@ <service name="tar_scm" mode="disabled"> <param name="url">https://github.com/HypothesisWorks/hypothesis.git</param> <param name="scm">git</param> - <param name="revision">hypothesis-python-6.56.1</param> + <param name="revision">hypothesis-python-6.56.2</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">hypothesis-python-(.*)</param> <param name="subdir">hypothesis-python</param> ++++++ hypothesis-python-6.56.1.tar.gz -> hypothesis-python-6.56.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hypothesis-python-6.56.1/docs/changes.rst new/hypothesis-python-6.56.2/docs/changes.rst --- old/hypothesis-python-6.56.1/docs/changes.rst 2022-10-05 07:17:17.000000000 +0200 +++ new/hypothesis-python-6.56.2/docs/changes.rst 2022-10-11 01:16:25.000000000 +0200 @@ -18,6 +18,16 @@ .. include:: ../RELEASE.rst +.. _v6.56.2: + +------------------- +6.56.2 - 2022-10-10 +------------------- + +This patch updates our vendored `list of top-level domains <https://www.iana.org/domains/root/db>`__, +which is used by the provisional :func:`~hypothesis.provisional.domains` strategy, and fixes some +incorrect examples in the docs for :func:`~hypothesis.extra.numpy.mutually_broadcastable_shapes`. + .. _v6.56.1: ------------------- diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hypothesis-python-6.56.1/docs/usage.rst new/hypothesis-python-6.56.2/docs/usage.rst --- old/hypothesis-python-6.56.1/docs/usage.rst 2022-10-05 07:17:17.000000000 +0200 +++ new/hypothesis-python-6.56.2/docs/usage.rst 2022-10-11 01:16:25.000000000 +0200 @@ -32,6 +32,7 @@ * `fusion-index <https://github.com/fusionapp/fusion-index>`_ * `hyper-h2 <https://github.com/python-hyper/h2>`_ * `into-dbus-python <https://github.com/stratis-storage/into-dbus-python>`_ +* `ivy <https://github.com/unifyai/ivy>`_ * `justbases <https://github.com/mulkieran/justbases>`_ * `justbytes <https://github.com/mulkieran/justbytes>`_ * `loris <https://github.com/loris-imageserver/loris>`_ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hypothesis-python-6.56.1/src/hypothesis/extra/_array_helpers.py new/hypothesis-python-6.56.2/src/hypothesis/extra/_array_helpers.py --- old/hypothesis-python-6.56.1/src/hypothesis/extra/_array_helpers.py 2022-10-05 07:17:17.000000000 +0200 +++ new/hypothesis-python-6.56.2/src/hypothesis/extra/_array_helpers.py 2022-10-11 01:16:25.000000000 +0200 @@ -387,8 +387,8 @@ ... print(strat.example()) BroadcastableShapes(input_shapes=((4, 1, 3), (4, 2, 3), ()), result_shape=(4, 2, 3)) BroadcastableShapes(input_shapes=((3,), (1, 3), (2, 3)), result_shape=(2, 3)) - BroadcastableShapes(input_shapes=((), (), ()), result_shape=(2, 3)) - BroadcastableShapes(input_shapes=((3,), (), (3,)), result_shape=(2, 3)) + BroadcastableShapes(input_shapes=((), (), ()), result_shape=()) + BroadcastableShapes(input_shapes=((3,), (), (3,)), result_shape=(3,)) BroadcastableShapes(input_shapes=((1, 2, 3), (3,), ()), result_shape=(1, 2, 3)) """ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hypothesis-python-6.56.1/src/hypothesis/vendor/tlds-alpha-by-domain.txt new/hypothesis-python-6.56.2/src/hypothesis/vendor/tlds-alpha-by-domain.txt --- old/hypothesis-python-6.56.1/src/hypothesis/vendor/tlds-alpha-by-domain.txt 2022-10-05 07:17:17.000000000 +0200 +++ new/hypothesis-python-6.56.2/src/hypothesis/vendor/tlds-alpha-by-domain.txt 2022-10-11 01:16:25.000000000 +0200 @@ -1,4 +1,4 @@ -# Version 2022040900, Last Updated Sat Apr 9 07:07:02 2022 UTC +# Version 2022100800, Last Updated Sat Oct 8 07:07:01 2022 UTC AAA AARP ABARTH @@ -176,7 +176,6 @@ BRUSSELS BS BT -BUGATTI BUILD BUILDERS BUSINESS @@ -196,7 +195,6 @@ CAM CAMERA CAMP -CANCERRESEARCH CANON CAPETOWN CAPITAL diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hypothesis-python-6.56.1/src/hypothesis/version.py new/hypothesis-python-6.56.2/src/hypothesis/version.py --- old/hypothesis-python-6.56.1/src/hypothesis/version.py 2022-10-05 07:17:17.000000000 +0200 +++ new/hypothesis-python-6.56.2/src/hypothesis/version.py 2022-10-11 01:16:25.000000000 +0200 @@ -8,5 +8,5 @@ # v. 2.0. If a copy of the MPL was not distributed with this file, You can # obtain one at https://mozilla.org/MPL/2.0/. -__version_info__ = (6, 56, 1) +__version_info__ = (6, 56, 2) __version__ = ".".join(map(str, __version_info__))