* update python-hypothesis to 6.124.7-1

This commit is contained in:
Alexander Baldeck 2025-02-18 13:14:37 +01:00
parent cbb792685c
commit 29b7a202dd
2 changed files with 9 additions and 10 deletions

View File

@ -1,6 +1,6 @@
pkgbase = python-hypothesis
pkgdesc = Advanced Quickcheck style testing library for Python
pkgver = 6.123.2
pkgver = 6.124.7
pkgrel = 1
url = https://hypothesis.readthedocs.org
arch = any
@ -40,8 +40,8 @@ pkgbase = python-hypothesis
optdepends = python-pytz: for datetime and django module
optdepends = python-redis: for redis support
optdepends = python-rich: for CLI
source = hypothesis-hypothesis-python-6.123.2.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.123.2.tar.gz
sha512sums = d46b3d83a14b629a39f7eb2dcb0915802ee8185b4796ea38d053e44f2e8e4025a053c99a0aea7b4b59442a24fd3600b78d5a19e1f0bbd13e8a2d9f93cdca3df6
b2sums = a7033cf2b5d56753ce19c5b369889b62d88c86df8254c840341c599dd97f575fc84e73236e701f4303d6141146bdef24f13f8d666f30a578ff80b067976934ba
source = hypothesis-hypothesis-python-6.124.7.tar.gz::https://github.com/HypothesisWorks/hypothesis/archive/hypothesis-python-6.124.7.tar.gz
sha512sums = c9c699d830082ccfb056c42817592ad3736b3e1c2294bed889d9e581dc8d4b093a86a949b24e3fa842941daf18933c55c6a479cd6768c30cde0cecb94777a620
b2sums = d0160dedfd78443724a7388020fa093ba95e8621403f4fa69f04c324a5be8d49b51c3cae4cca488a86046818b6762a3f9703b1963186ae82daed2c8cdf0f8f70
pkgname = python-hypothesis

View File

@ -7,7 +7,7 @@
_name=hypothesis
_alt_name=$_name-python
pkgname=python-hypothesis
pkgver=6.123.2
pkgver=6.124.7
_version=$_alt_name-$pkgver
pkgrel=1
pkgdesc="Advanced Quickcheck style testing library for Python"
@ -59,8 +59,8 @@ optdepends=(
'python-rich: for CLI'
)
source=("$_name-$_version.tar.gz::$_url/archive/$_version.tar.gz")
sha512sums=('d46b3d83a14b629a39f7eb2dcb0915802ee8185b4796ea38d053e44f2e8e4025a053c99a0aea7b4b59442a24fd3600b78d5a19e1f0bbd13e8a2d9f93cdca3df6')
b2sums=('a7033cf2b5d56753ce19c5b369889b62d88c86df8254c840341c599dd97f575fc84e73236e701f4303d6141146bdef24f13f8d666f30a578ff80b067976934ba')
sha512sums=('c9c699d830082ccfb056c42817592ad3736b3e1c2294bed889d9e581dc8d4b093a86a949b24e3fa842941daf18933c55c6a479cd6768c30cde0cecb94777a620')
b2sums=('d0160dedfd78443724a7388020fa093ba95e8621403f4fa69f04c324a5be8d49b51c3cae4cca488a86046818b6762a3f9703b1963186ae82daed2c8cdf0f8f70')
build() {
cd $_name-$_version/$_alt_name
@ -70,10 +70,9 @@ build() {
check() {
local pytest_options=(
-vv
# disable failing tests: https://github.com/HypothesisWorks/hypothesis/issues/3704
# Depends on python-hypothesis-crosshair which is not packaged,
# for some reason --deselect does not work, so ignoring whole file
--ignore tests/conjecture/test_ir.py
--ignore tests/ghostwriter/test_ghostwriter.py
--ignore tests/crosshair/test_crosshair.py
)
local site_packages=$(python -c "import site; print(site.getsitepackages()[0])")