nchammas commented on a change in pull request #28243: [SPARK-29672][BUILD][PYTHON][FOLLOW-UP] Recover PySpark via pip installation with deprecated Python 2, 3.4 and 3.5 URL: https://github.com/apache/spark/pull/28243#discussion_r410349080
########## File path: python/setup.py ########## @@ -16,14 +16,15 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import print_function import glob import os import sys from setuptools import setup from shutil import copyfile, copytree, rmtree -if sys.version_info < (3, 6): Review comment: Maybe convert this into a warning that the user is using a version of Python that Spark has deprecated support for? ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
