diff options
author | TBK <tbk@jjtc.dk> | 2018-04-05 21:27:07 +0200 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2018-04-06 05:10:34 +0000 |
commit | d3430e29a838c816bf7606134a550374bff4eca2 (patch) | |
tree | c90522125795cd28eed61ba8dc300a00f2ddade6 /community/pytest | |
parent | ed1350d09fdb7795eaa30cb8797976cc33912d79 (diff) | |
download | aports-d3430e29a838c816bf7606134a550374bff4eca2.tar.bz2 aports-d3430e29a838c816bf7606134a550374bff4eca2.tar.xz |
community/pytest: fix dependencies
Diffstat (limited to 'community/pytest')
-rw-r--r-- | community/pytest/APKBUILD | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/community/pytest/APKBUILD b/community/pytest/APKBUILD index 36945c04e8..ae7b62f87a 100644 --- a/community/pytest/APKBUILD +++ b/community/pytest/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> pkgname=pytest pkgver=3.5.0 -pkgrel=0 +pkgrel=1 pkgdesc="A python test library" url="http://pytest.org" arch="noarch" @@ -35,12 +35,12 @@ package() { _py2() { replaces="$pkgname" - depends="py2-py" + depends="py2-py py2-six py2-attrs py2-setuptools py2-more-itertools py2-pluggy py2-funcsigs" _py python2 } _py3() { - depends="py3-py" + depends="py3-py py3-six py3-attrs py3-more-itertools py3-pluggy" _py python3 } |