Accepting request 554671 from home:apersaud:branches:devel:languages:python
update to latest version OBS-URL: https://build.opensuse.org/request/show/554671 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hypothesis?expand=0&rev=35
This commit is contained in:
parent
124e167687
commit
f757385d44
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dc4d11fa3f182ca7bb233a64e70abfc8fa36b893baaebe1b2a4f2fe87e39a16d
|
||||
size 129862
|
3
hypothesis-3.40.1.tar.gz
Normal file
3
hypothesis-3.40.1.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ab63b408904ce5f31a2279f3ad46b890d95b72f7d68ea059355a63171e7720a7
|
||||
size 132534
|
@ -1,3 +1,52 @@
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 6 02:52:35 UTC 2017 - arun@gmx.de
|
||||
|
||||
- update to version 3.40.1:
|
||||
|
||||
3.40.1 - 2017-12-04
|
||||
* This release makes two changes:
|
||||
+ It makes the calculation of some of the metadata that Hypothesis
|
||||
uses for shrinking occur lazily. This should speed up
|
||||
performance of test case generation a bit because it no longer
|
||||
calculates information it doesn’t need.
|
||||
+ It improves the shrinker for certain classes of nested
|
||||
examples. e.g. when shrinking lists of lists, the shrinker is
|
||||
now able to concatenate two adjacent lists together into a
|
||||
single list. As a result of this change, shrinking may get
|
||||
somewhat slower when the minimal example found is large.
|
||||
|
||||
- changes from version 3.40.0:
|
||||
* This release improves how various ways of seeding Hypothesis
|
||||
interact with the example database:
|
||||
+ Using the example database with seed() is now deprecated. You
|
||||
should set database=None if you are doing that. This will only
|
||||
warn if you actually load examples from the database while using
|
||||
@seed.
|
||||
+ The derandomize will behave the same way as @seed.
|
||||
+ Using --hypothesis-seed will disable use of the database.
|
||||
+ If a test used examples from the database, it will not suggest
|
||||
using a seed to reproduce it, because that won’t work.
|
||||
|
||||
- changes from version 3.39.0:
|
||||
* This release adds a new health check that checks if the smallest
|
||||
“natural” possible example of your test case is very large - this
|
||||
will tend to cause Hypothesis to generate bad examples and be
|
||||
quite slow.
|
||||
|
||||
- changes from version 3.38.9:
|
||||
* This is a documentation release to improve the documentation of
|
||||
shrinking behaviour for Hypothesis’s strategies.
|
||||
|
||||
- changes from version 3.38.8:
|
||||
* This release improves the performance of characters() when using
|
||||
blacklist_characters and from_regex() when using negative
|
||||
character classes.
|
||||
|
||||
- changes from version 3.38.7:
|
||||
* This is a patch release for from_regex(), which had a bug in
|
||||
handling of the re.VERBOSE flag (issue #992). Flags are now
|
||||
handled correctly when parsing regex.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 28 19:04:24 UTC 2017 - arun@gmx.de
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
%endif
|
||||
%bcond_with test
|
||||
Name: python-hypothesis
|
||||
Version: 3.38.6
|
||||
Version: 3.40.1
|
||||
Release: 0
|
||||
Summary: A library for property based testing
|
||||
License: MPL-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user