Date: Friday, January 15, 2021 @ 14:21:42 Author: daurnimator Revision: 821007
setuptools is only required at build time Modified: httpie/trunk/PKGBUILD ----------+ PKGBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2021-01-15 14:11:02 UTC (rev 821006) +++ PKGBUILD 2021-01-15 14:21:42 UTC (rev 821007) @@ -5,14 +5,14 @@ pkgname=httpie pkgver=2.3.0 -pkgrel=3 +pkgrel=4 pkgdesc="cURL for humans" url="https://github.com/jakubroztocil/httpie" depends=('python-requests' 'python-requests-toolbelt' 'python-pygments' - 'python-pysocks' - 'python-setuptools') + 'python-pysocks') +makedepends=('python-setuptools') checkdepends=('python-pytest' 'python-pytest-httpbin' 'python-mock') conflicts=(python-httpie) replaces=(python-httpie python2-httpie)
