nigzak commented on issue #26991: URL: https://github.com/apache/superset/issues/26991#issuecomment-1979112736
I made some tests with blank python docker images, it seems somehow to be an issue with python 3.9 (?) // use a default installation in python 3.9-slim ``` from python:3.9-slim RUN pip install setuptools RUN pip show setuptools ``` Setuptools 58.1.0 is inside  // use latest version in python 3.9-slim ``` from python:3.9-slim RUN pip install setuptools==69.1.1 RUN pip show setuptools ``` Setuptools 69.1.1 is inside  // use latest version in python 3.10-slim ``` from python:3.10-slim RUN pip install setuptools RUN pip show setuptools ``` Setuptools 65.5.1 is inside  Because setuptool in default installation in 3.9-slim without version is exact the one in superset - might it be that there is some problem with a "default" package configuration depending the python version..? (If you try to update to "latest" version bevore installing - and it picks a old version because of this - it might not be updated anywhere ... I don't know, it is the first time I see something like this?) would also match with this: https://docs.python.org/3.9/whatsnew/changelog.html  -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
