Skip to content

Commit

Permalink
Address review comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
lins05 committed Dec 4, 2016
1 parent 90ca61d commit 5706d8c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
4 changes: 2 additions & 2 deletions python/MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
global-exclude *.py[cod] __pycache__ .DS_Store
recursive-include deps/jars *.jar
graft deps/bin
graft deps/data
graft deps/licenses
recursive-include deps/data *.data *.txt
recursive-include deps/licenses *.txt
recursive-include deps/examples *.py
recursive-include lib *.zip
include README.md
3 changes: 0 additions & 3 deletions python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@
LICENSES_PATH = os.path.join(SPARK_HOME, "licenses")
LICENSES_TARGET = os.path.join(TEMP_PATH, "licenses")

data_files = glob.glob(os.path.join(LICENSES_PATH, "*"))

# Check and see if we are under the spark path in which case we need to build the symlink farm.
# This is important because we only want to build the symlink farm while under Spark otherwise we
# want to use the symlink farm. And if the symlink farm exists under while under Spark (e.g. a
Expand Down Expand Up @@ -189,7 +187,6 @@ def _supports_symlinks():
'pyspark.data': ['*.txt', '*.data'],
'pyspark.licenses': ['*.txt'],
'pyspark.examples.src.main.python': ['*.py', '*/*.py']},
data_files=[('', data_files)],
scripts=scripts,
license='http://www.apache.org/licenses/LICENSE-2.0',
install_requires=['py4j==0.10.4'],
Expand Down

0 comments on commit 5706d8c

Please sign in to comment.