Date: Monday, July 27, 2020 @ 14:03:44 Author: felixonmars Revision: 665467
upgpkg: python-testflo 1.4.2-2: relax coverage version bound Modified: python-testflo/trunk/PKGBUILD ----------+ PKGBUILD | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2020-07-27 13:59:34 UTC (rev 665466) +++ PKGBUILD 2020-07-27 14:03:44 UTC (rev 665467) @@ -2,9 +2,9 @@ pkgname=python-testflo pkgver=1.4.2 -pkgrel=1 +pkgrel=2 pkgdesc="A simple flow-based testing framework" -url="https://github.com/RaRe-Technologies/testflo" +url="https://github.com/OpenMDAO/testflo" license=('Apache') arch=('any') depends=('python-coverage') @@ -12,6 +12,11 @@ source=("https://pypi.io/packages/source/t/testflo/testflo-$pkgver.tar.gz") sha512sums=('133475b4d870685e8a836b3bfb25da569664e7f54bf144332da41130107d0b0fb1142d34804d968796c76bc30ac891994ffc4e7c04ea6d73f4ceff406842a6a5') +prepare() { + cd testflo-$pkgver + sed -i 's/coverage<5.0/coverage/' setup.py +} + build() { cd testflo-$pkgver python setup.py build
