diff options
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/distutils-r1.eclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index e97789cc1990..06fd6a5059dd 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -248,8 +248,14 @@ _distutils_set_globals() { ' ;; setuptools) + # || ( ... ) dep is a workaround for bug #892525 + # It can be removed once >=67.2.0 is stable and replaced with + # a simple >=67.2.0 dep. bdep+=' - >=dev-python/setuptools-65.7.0[${PYTHON_USEDEP}] + || ( + >=dev-python/setuptools-67.2.0[${PYTHON_USEDEP}] + <dev-python/setuptools-65.6.4[${PYTHON_USEDEP}] + ) >=dev-python/wheel-0.38.4[${PYTHON_USEDEP}] ' ;; |