pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/devel/py-hypothesis



Module Name:    pkgsrc
Committed By:   adam
Date:           Wed Feb  8 10:31:14 UTC 2023

Modified Files:
        pkgsrc/devel/py-hypothesis: Makefile distinfo

Log Message:
py-hypothesis: updated to 6.67.1

6.67.1 - 2023-02-05

This patch updates our autoformatting tools, improving our code style without any API changes.

6.67.0 - 2023-02-05

This release allows for more precise generation of complex numbers using from_dtype(), by supporting the width, min_magnitude, and min_magnitude arguments.

Thanks to Felix Divo for this feature!

6.66.2 - 2023-02-04

This patch fixes a rare RecursionError when pretty-printing a multi-line object without type-specific printer, which was passed to a function which returned the same object by .map() or builds() and 
thus recursed due to the new pretty reprs in Hypothesis 6.65.0 - 2023-01-24. Apologies to all those affected.

6.66.1 - 2023-02-03

This makes from_dtype() pass through the parameter allow_subnormal for complex dtypes.

6.66.0 - 2023-02-02

This release adds a width parameter to complex_numbers(), analogously to floats().

Thanks to Felix Divo for the new feature!

6.65.2 - 2023-01-27

This patch fixes invalid annotations detected for the tests generated by Ghostwritter. It will now correctly generate Optional types with just one type argument and handle union expressions inside of 
type arguments correctly. Additionally, it now supports code with the from __future__ import annotations marker for Python 3.10 and newer.

6.65.1 - 2023-01-26

This release improves the pretty-printing of enums in falsifying examples, so that they print as their full identifier rather than their repr.

6.65.0 - 2023-01-24

Hypothesis now reports some failing inputs by showing the call which constructed an object, rather than the repr of the object. This can be helpful when the default repr does not include all relevant 
details, and will unlock further improvements in a future version.

For now, we capture calls made via builds(), and via SearchStrategy.map().

6.64.0 - 2023-01-23

The Ghostwritter will now include type annotations on tests for type-annotated code. If you want to force this to happen (or not happen), pass a boolean to the new annotate= argument to the Python 
functions, or the --[no-]annotate CLI flag.

Thanks to Nicolas Ganz for this new feature!

6.63.0 - 2023-01-20

range_indexes() now accepts a name= argument, to generate named pandas.RangeIndex objects.

Thanks to Sam Watts for this new feature!

6.62.1 - 2023-01-14

This patch tweaks xps.arrays() internals to improve PyTorch compatibility. Specifically, torch.full() does not accept integers as the shape argument (n.b. technically “size” in torch), but such 
behaviour is expected in internal code, so we copy the torch module and patch in a working full() function.


To generate a diff of this commit:
cvs rdiff -u -r1.116 -r1.117 pkgsrc/devel/py-hypothesis/Makefile
cvs rdiff -u -r1.112 -r1.113 pkgsrc/devel/py-hypothesis/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/devel/py-hypothesis/Makefile
diff -u pkgsrc/devel/py-hypothesis/Makefile:1.116 pkgsrc/devel/py-hypothesis/Makefile:1.117
--- pkgsrc/devel/py-hypothesis/Makefile:1.116   Sun Dec 18 16:18:53 2022
+++ pkgsrc/devel/py-hypothesis/Makefile Wed Feb  8 10:31:14 2023
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.116 2022/12/18 16:18:53 adam Exp $
+# $NetBSD: Makefile,v 1.117 2023/02/08 10:31:14 adam Exp $
 #
 # Changelog: https://hypothesis.readthedocs.io/en/latest/changes.html
 
-DISTNAME=      hypothesis-6.61.0
+DISTNAME=      hypothesis-6.67.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=h/hypothesis/}

Index: pkgsrc/devel/py-hypothesis/distinfo
diff -u pkgsrc/devel/py-hypothesis/distinfo:1.112 pkgsrc/devel/py-hypothesis/distinfo:1.113
--- pkgsrc/devel/py-hypothesis/distinfo:1.112   Sun Dec 18 16:18:53 2022
+++ pkgsrc/devel/py-hypothesis/distinfo Wed Feb  8 10:31:14 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.112 2022/12/18 16:18:53 adam Exp $
+$NetBSD: distinfo,v 1.113 2023/02/08 10:31:14 adam Exp $
 
-BLAKE2s (hypothesis-6.61.0.tar.gz) = 0dfb99c6670de063bde0d48daaa4da605fd6a1285c8d1175c236fbc84f960443
-SHA512 (hypothesis-6.61.0.tar.gz) = db0b71375e9af58a716d62180107066e40e772e64609baf3ab63dbb777d89e9f72444b035d0384de20a2181926bd4c8698549d2525b9c8da153f2b62018e325d
-Size (hypothesis-6.61.0.tar.gz) = 336664 bytes
+BLAKE2s (hypothesis-6.67.1.tar.gz) = 4df1df9f01b70dae2b3e37ee266e3815eed9844a5a1fa380c213d256e42dda53
+SHA512 (hypothesis-6.67.1.tar.gz) = febbee7855c0206f144b2a742a0f910294060042c418a6cae8485723057c454a3b809040a858a610dc5924b339b1b924e6a02b96d367ff484dde97f76e863a26
+Size (hypothesis-6.67.1.tar.gz) = 340840 bytes



Home | Main Index | Thread Index | Old Index