On 09/07/2020 00:02, Strube, Alexandre wrote:
I have on my Python easyconfig :exts_list = [ ('six', '1.12.0', { 'source_urls': ['https://pypi.python.org/packages/source/s/six/'], }), ('setuptools', '41.3.0', { 'source_tmpl': '%(name)s-%(version)s.zip', 'source_urls': ['https://pypi.python.org/packages/source/s/setuptools/'], }), but when I check, it tells me that setuptools is 40.6.2 and if I go inside the installed directory, I see this: drwxrwsr-x 6 strube1 swmanage 4096 Jul 8 19:01 setuptools drwxrwsr-x 2 strube1 swmanage 4096 Jul 8 19:01 setuptools-40.6.2.dist-info -rw-rw-r-- 1 strube1 swmanage 1041351 Jul 8 19:02 setuptools-41.3.0-py3.6.egg -rw-rw-r-- 1 strube1 swmanage 30 Jul 8 19:26 setuptools.pth -rw-rw-r-- 1 strube1 swmanage 45634 Jul 8 19:18 setuptools_scm-3.2.0-py3.6.egg What am I doing wrong here?
You should check the log, something else you are installing could be require an older setuptools version, or maybe install one hardcoded?
regards, Kenneth

