kfaraz commented on code in PR #13252: URL: https://github.com/apache/druid/pull/13252#discussion_r1003583845
########## check_test_suite.py: ########## @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 +#!/usr/bin/env python3.9 Review Comment: I was not too keen on this either. But the scripts need to explicitly specify the correct python version. Otherwise, they pick up the pre-installed python 3.5. From what I could find during my searches, it is not advisable to uninstall the existing python3.5 as it seems to be tightly coupled to the Ubuntu installation. Making a symlink from python3.9 to python3 wouldn't really help much either. As for the python version, we can be on this version for as long as the repos host the required packages. Officially, python3.9 is supposed to be supported till 2024/25. -- 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]
