From f63bd3d8af0fb1c65fd5f32c8c052caa69a51fff Mon Sep 17 00:00:00 2001 From: hyukjinkwon Date: Sun, 26 Aug 2018 17:40:16 +0800 Subject: [PATCH] Resolve undefiend names in setup.py --- python/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/setup.py b/python/setup.py index 45eb74eb87ce7..c447f2d40343d 100644 --- a/python/setup.py +++ b/python/setup.py @@ -34,7 +34,7 @@ print("Failed to load PySpark version file for packaging. You must be in Spark's python dir.", file=sys.stderr) sys.exit(-1) -VERSION = __version__ +VERSION = __version__ # noqa # A temporary path so we can access above the Python project root and fetch scripts and jars we need TEMP_PATH = "deps" SPARK_HOME = os.path.abspath("../")