aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Weiss <luca@z3ntu.xyz>2020-05-30 21:37:04 +0200
committerLeo <thinkabit.ukim@gmail.com>2020-05-30 23:38:29 +0000
commit6638a342af2cf4e883efcf4ab245f44026cbb41f (patch)
treefca815d73b08af4e112fb34e49ee1803c6a481d8
parent8d3fa670da7c1f43cb567f3d32c2f70cf4344a5a (diff)
downloadalpine_aports-6638a342af2cf4e883efcf4ab245f44026cbb41f.tar.bz2
alpine_aports-6638a342af2cf4e883efcf4ab245f44026cbb41f.tar.xz
alpine_aports-6638a342af2cf4e883efcf4ab245f44026cbb41f.zip
testing/py3-pylint: add missing dependency
When py3-toml isn't installed the following exception is thrown: pkg_resources.DistributionNotFound: The 'toml>=0.7.1' distribution was not found and is required by pylint
-rw-r--r--testing/py3-pylint/APKBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/py3-pylint/APKBUILD b/testing/py3-pylint/APKBUILD
index e92dbd0291..24167ca669 100644
--- a/testing/py3-pylint/APKBUILD
+++ b/testing/py3-pylint/APKBUILD
@@ -2,7 +2,7 @@
2# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch> 2# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
3pkgname=py3-pylint 3pkgname=py3-pylint
4pkgver=2.5.2 4pkgver=2.5.2
5pkgrel=0 5pkgrel=1
6pkgdesc="Analyzes Python code looking for bugs and signs of poor quality" 6pkgdesc="Analyzes Python code looking for bugs and signs of poor quality"
7options="!check" # 1 test test_by_module_statement_value fails 7options="!check" # 1 test test_by_module_statement_value fails
8url="https://github.com/PyCQA/pylint" 8url="https://github.com/PyCQA/pylint"
@@ -13,6 +13,7 @@ depends="
13 py3-isort 13 py3-isort
14 py3-mccabe 14 py3-mccabe
15 py3-setuptools 15 py3-setuptools
16 py3-toml
16 " 17 "
17checkdepends=" 18checkdepends="
18 mpdecimal 19 mpdecimal