diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-03-14 17:21:08 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-03-16 08:35:48 +0100 |
commit | 346c4e61fafcca09861df65bdcafd8a087695540 (patch) | |
tree | 6f7351c0c007eb799eaa79c467f60fb418b26f5f /eclass/distutils-r1.eclass | |
parent | sys-apps/help2man: Removed old (diff) | |
download | gentoo-346c4e61fafcca09861df65bdcafd8a087695540.tar.gz gentoo-346c4e61fafcca09861df65bdcafd8a087695540.tar.bz2 gentoo-346c4e61fafcca09861df65bdcafd8a087695540.zip |
distutils-r1.eclass: Align min. setuptools version to current stable
Closes: https://bugs.gentoo.org/712502
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'eclass/distutils-r1.eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index f3df05eeb670..114ccc8041cc 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -120,10 +120,10 @@ _distutils_set_globals() { local bdep=${rdep} if [[ ! ${DISTUTILS_SINGLE_IMPL} ]]; then - local sdep="dev-python/setuptools[${PYTHON_USEDEP}]" + local sdep=">=dev-python/setuptools-42.0.2[${PYTHON_USEDEP}]" else local sdep="$(python_gen_cond_dep ' - dev-python/setuptools[${PYTHON_MULTI_USEDEP}] + >=dev-python/setuptools-42.0.2[${PYTHON_MULTI_USEDEP}] ')" fi |