6.8.6 - 2021-04-06 The fixed_dictionaries() strategy now preserves dict iteration order instead of sorting the keys. This also affects the pretty-printing of keyword arguments to @given(). 6.8.5 - 2021-04-05 This patch teaches hypothesis write to default to ghostwriting tests with --style=pytest only if pytest is installed, or --style=unittest otherwise. 6.8.4 - 2021-04-01 This patch adds type annotations for the settings decorator, to avoid an error when running mypy in strict mode. 6.8.3 - 2021-03-28 This patch improves the Ghostwriter’s handling of strategies to generate various fiddly types including frozensets, keysviews, valuesviews, regex matches and patterns, and so on. 6.8.2 - 2021-03-27 This patch fixes some internal typos. There is no user-visible change.
23 lines
696 B
Makefile
23 lines
696 B
Makefile
# $NetBSD: Makefile,v 1.98 2021/04/07 06:23:52 adam Exp $
|
|
#
|
|
# Changelog: https://hypothesis.readthedocs.io/en/latest/changes.html
|
|
|
|
DISTNAME= hypothesis-6.8.6
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=h/hypothesis/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/HypothesisWorks/hypothesis
|
|
COMMENT= Python library for property based testing
|
|
LICENSE= mpl-2.0
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-attrs>=19.2.0:../../devel/py-attrs
|
|
DEPENDS+= ${PYPKGPREFIX}-sortedcontainers>=2.1.0:../../devel/py-sortedcontainers
|
|
|
|
PYTHON_VERSIONS_INCOMPATIBLE= 27
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|