Accepting request 1152084 from home:mcalabkova:branches:devel:languages:python
- Update to 6.98.9 * Avoid creating a .hypothesis directory when using register_type_strategy(). * Add ability to pass any object to note(). * Warn when constructing a repr that is overly long. * Change the distribution of sampled_from() when sampling from a Flag. * Deprecate use of the global random number generator while drawing from a strategy. * Improve our distribution of generated values for all strategies. * Improve the Ghostwriter for binary operators. OBS-URL: https://build.opensuse.org/request/show/1152084 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hypothesis?expand=0&rev=185
This commit is contained in:
parent
b5769c4ca6
commit
fc0f03b461
2
_service
2
_service
@ -2,7 +2,7 @@
|
|||||||
<service name="tar_scm" mode="manual">
|
<service name="tar_scm" mode="manual">
|
||||||
<param name="url">https://github.com/HypothesisWorks/hypothesis.git</param>
|
<param name="url">https://github.com/HypothesisWorks/hypothesis.git</param>
|
||||||
<param name="scm">git</param>
|
<param name="scm">git</param>
|
||||||
<param name="revision">hypothesis-python-6.93.2</param>
|
<param name="revision">hypothesis-python-6.98.9</param>
|
||||||
<param name="versionformat">@PARENT_TAG@</param>
|
<param name="versionformat">@PARENT_TAG@</param>
|
||||||
<param name="versionrewrite-pattern">hypothesis-python-(.*)</param>
|
<param name="versionrewrite-pattern">hypothesis-python-(.*)</param>
|
||||||
<param name="subdir">hypothesis-python</param>
|
<param name="subdir">hypothesis-python</param>
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:60feb432a7ec7846fd97aebd58a2a2e2a42fd70527e615df6b81d51ff58d6c18
|
|
||||||
size 856122
|
|
BIN
hypothesis-python-6.98.9.tar.gz
(Stored with Git LFS)
Normal file
BIN
hypothesis-python-6.98.9.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@ -1,3 +1,15 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Feb 22 12:42:26 UTC 2024 - Markéta Machová <mmachova@suse.com>
|
||||||
|
|
||||||
|
- Update to 6.98.9
|
||||||
|
* Avoid creating a .hypothesis directory when using register_type_strategy().
|
||||||
|
* Add ability to pass any object to note().
|
||||||
|
* Warn when constructing a repr that is overly long.
|
||||||
|
* Change the distribution of sampled_from() when sampling from a Flag.
|
||||||
|
* Deprecate use of the global random number generator while drawing from a strategy.
|
||||||
|
* Improve our distribution of generated values for all strategies.
|
||||||
|
* Improve the Ghostwriter for binary operators.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Jan 24 13:47:04 UTC 2024 - ecsos <ecsos@opensuse.org>
|
Wed Jan 24 13:47:04 UTC 2024 - ecsos <ecsos@opensuse.org>
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ ExclusiveArch: do_not_build
|
|||||||
%endif
|
%endif
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-hypothesis%{psuffix}
|
Name: python-hypothesis%{psuffix}
|
||||||
Version: 6.93.2
|
Version: 6.98.9
|
||||||
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
|
||||||
@ -212,7 +212,8 @@ export PYTEST_ADDOPTS="--ignore=tests/pandas/ --ignore=tests/redis/test_redis_ex
|
|||||||
%license LICENSE.txt
|
%license LICENSE.txt
|
||||||
%doc README.rst
|
%doc README.rst
|
||||||
%python_alternative %{_bindir}/hypothesis
|
%python_alternative %{_bindir}/hypothesis
|
||||||
%{python_sitelib}/*hypothesis*
|
%{python_sitelib}/hypothesis
|
||||||
|
%{python_sitelib}/_hypothesis*.py
|
||||||
%{python_sitelib}/hypothesis-%{version}.dist-info
|
%{python_sitelib}/hypothesis-%{version}.dist-info
|
||||||
%pycache_only %{python_sitelib}/__pycache__/*hypothesis*
|
%pycache_only %{python_sitelib}/__pycache__/*hypothesis*
|
||||||
%endif
|
%endif
|
||||||
|
Loading…
Reference in New Issue
Block a user