forked from pool/python-hypothesis
Accepting request 533201 from home:apersaud:branches:devel:languages:python
update to latest version OBS-URL: https://build.opensuse.org/request/show/533201 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hypothesis?expand=0&rev=19
This commit is contained in:
parent
f34d25aa2b
commit
840516b163
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8111d860a5638294fee7490acde44275ad00ffd10184aa55797ba1cbed09e871
|
|
||||||
size 128066
|
|
3
hypothesis-3.32.0.tar.gz
Normal file
3
hypothesis-3.32.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:23f2046607e0c4cf83366fd264fd8b9ed2a49c36d1121f6407115bd6bf6f1c2f
|
||||||
|
size 128516
|
@ -1,3 +1,47 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Oct 9 04:06:23 UTC 2017 - arun@gmx.de
|
||||||
|
|
||||||
|
- update to version 3.32.0:
|
||||||
|
* This changes the default value of use_coverage=True to True when
|
||||||
|
running on pypy (it was already True on CPython).
|
||||||
|
|
||||||
|
It was previously set to False because we expected it to be too
|
||||||
|
slow, but recent benchmarking shows that actually performance of
|
||||||
|
the feature on pypy is fairly acceptable - sometimes it’s slower
|
||||||
|
than on CPython, sometimes it’s faster, but it’s generally within
|
||||||
|
a factor of two either way.
|
||||||
|
|
||||||
|
- changes from version 3.31.6:
|
||||||
|
* This patch improves the quality of strategies inferred from Numpy
|
||||||
|
dtypes:
|
||||||
|
+ Integer dtypes generated examples with the upper half of their
|
||||||
|
(non-sign) bits set to zero. The inferred strategies can now
|
||||||
|
produce any representable integer.
|
||||||
|
+ Fixed-width unicode- and byte-string dtypes now cap the internal
|
||||||
|
example length, which should improve example and shrink quality.
|
||||||
|
+ Numpy arrays can only store fixed-size strings internally, and
|
||||||
|
allow shorter strings by right-padding them with null
|
||||||
|
bytes. Inferred string strategies no longer generate such
|
||||||
|
values, as they can never be retrieved from an array. This
|
||||||
|
improves shrinking performance by skipping useless values.
|
||||||
|
+ This has already been useful in Hypothesis - we found an
|
||||||
|
overflow bug in our Pandas support, and as a result indexes()
|
||||||
|
and range_indexes() now check that min_size and max_size are at
|
||||||
|
least zero.
|
||||||
|
|
||||||
|
- changes from version 3.31.5:
|
||||||
|
* This release fixes a performance problem in tests where
|
||||||
|
+ use_coverage is set to True.
|
||||||
|
+ Tests experience a slow-down proportionate to the amount of code
|
||||||
|
they cover. This is still the case, but the factor is now low
|
||||||
|
enough that it should be unnoticeable. Previously it was large
|
||||||
|
and became much larger in 3.28.4.
|
||||||
|
|
||||||
|
- changes from version 3.31.4:
|
||||||
|
* from_type() failed with a very confusing error if passed a
|
||||||
|
NewType() (issue #901). These psudeo-types are now unwrapped
|
||||||
|
correctly, and strategy inference works as expected.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 6 19:43:51 UTC 2017 - arun@gmx.de
|
Fri Oct 6 19:43:51 UTC 2017 - arun@gmx.de
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
%endif
|
%endif
|
||||||
%bcond_with test
|
%bcond_with test
|
||||||
Name: python-hypothesis
|
Name: python-hypothesis
|
||||||
Version: 3.31.3
|
Version: 3.32.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A library for property based testing
|
Summary: A library for property based testing
|
||||||
License: MPL-2.0
|
License: MPL-2.0
|
||||||
|
Loading…
Reference in New Issue
Block a user