Accepting request 539900 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/539900 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-hypothesis?expand=0&rev=9
This commit is contained in:
commit
9ff7102136
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:fd1624a8f0d39456423f1c3041b996dccb292efc81e30366407304960253df12
|
||||
size 128548
|
3
hypothesis-3.36.0.tar.gz
Normal file
3
hypothesis-3.36.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:736347bdd67f0ff8a881658b185e25d444484e3f300f37ae1e80d703e6d86a69
|
||||
size 128946
|
@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 7 23:22:24 UTC 2017 - arun@gmx.de
|
||||
|
||||
- update to version 3.36.0:
|
||||
* This release adds a setting to the public API, and does some
|
||||
internal cleanup:
|
||||
+ The derandomize setting is now documented (issue #890)
|
||||
+ Removed - and disallowed - all ‘bare excepts’ in Hypothesis
|
||||
(issue #953)
|
||||
+ Documented the strict setting as deprecated, and updated the
|
||||
build so our docs always match deprecations in the code.
|
||||
|
||||
- changes from version 3.35.0:
|
||||
* This minor release supports constraining uuids() to generate
|
||||
uuid.UUID`s of a particular version. (:issue:`721)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Nov 4 02:01:40 UTC 2017 - arun@gmx.de
|
||||
|
||||
- update to version 3.34.1:
|
||||
* This patch updates the documentation to suggest builds(callable)
|
||||
instead of just(callable()).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 3 05:13:56 UTC 2017 - arun@gmx.de
|
||||
|
||||
- update to version 3.34.0:
|
||||
* Hypothesis now emits deprecation warnings if you apply @given more
|
||||
than once to a target.
|
||||
Applying @given repeatedly wraps the target multiple times. Each
|
||||
wrapper will search the space of of possible parameters
|
||||
separately. This is equivalent but will be much more inefficient
|
||||
than doing it with a single call to @given.
|
||||
For example, instead of @given(booleans()) @given(integers()), you
|
||||
could write @given(booleans(), integers())
|
||||
|
||||
- changes from version 3.33.1 :
|
||||
* builds() would try to infer a strategy for required positional
|
||||
arguments of the target from type hints, even if they had been
|
||||
given to builds() as positional arguments (issue #946). Now it
|
||||
only infers missing required arguments.
|
||||
* An internal introspection function wrongly reported self as a
|
||||
required argument for bound methods, which might also have
|
||||
affected builds(). Now it knows better.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 17 01:47:00 UTC 2017 - arun@gmx.de
|
||||
|
||||
|
@ -24,7 +24,7 @@
|
||||
%endif
|
||||
%bcond_with test
|
||||
Name: python-hypothesis
|
||||
Version: 3.33.0
|
||||
Version: 3.36.0
|
||||
Release: 0
|
||||
Summary: A library for property based testing
|
||||
License: MPL-2.0
|
||||
|
Loading…
Reference in New Issue
Block a user