14
0

Accepting request 618822 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/618822
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hypothesis?expand=0&rev=63
This commit is contained in:
Tomáš Chvátal
2018-06-25 11:02:02 +00:00
committed by Git OBS Bridge
parent 815e3e08ce
commit 65044c82ac
4 changed files with 58 additions and 10 deletions

View File

@@ -1,3 +1,53 @@
-------------------------------------------------------------------
Sun Jun 24 15:40:53 UTC 2018 - arun@gmx.de
- specfile:
* use %{version} in source
- update to version 3.61.0:
* This release deprecates the use of settings as a context manager,
the use of which is somewhat ambiguous.Users should define
settings with global state or with the @settings(...) decorator.
- changes from version 3.60.1:
* Fixed a bug in generating an instance of a Django model from a
strategy where the primary key is generated as part of the
strategy. See details here.
- changes from version 3.60.0:
* This release add initialize decorator for stateful testing
(originally discussed in issue #1216). initialize act as a special
rule that is only called once, and all initialize rules are
guaranteed to be called before any normal rule is called.
- changes from version 3.59.3:
* This is a no-op release to take into account some changes to the
release process. It should have no user visible effect.
- changes from version 3.59.2:
* This adds support for partially sorting examples which cannot be
fully sorted. For example, [5, 4, 3, 2, 1, 0] with a constraint
that the first element needs to be larger than the last becomes
[1, 2, 3, 4, 5, 0].
- changes from version 3.59.1:
* This patch uses random.getstate() and random.setstate() to restore
the PRNG state after @given runs deterministic tests. Without
restoring state, you might have noticed problems such as issue
#1266. The fix also applies to stateful testing (issue #702).
- changes from version 3.59.0:
* This release adds the emails() strategy, which generates unicode
strings representing an email address.
- changes from version 3.58.1:
* This improves the shrinker. It can now reorder examples: 3 1 2
becomes 1 2 3.
- changes from version 3.58.0:
* This adds a new extra timezones() strategy that generates dateutil
timezones. Depends on python-dateutil.
-------------------------------------------------------------------
Mon Jun 4 19:27:19 UTC 2018 - toddrme2178@gmail.com