Skip to content

Commit

Permalink
Merge pull request #885 from genome-vendor/mcallawa_python_no_wheel
Browse files Browse the repository at this point in the history
Until python wheel format is supported, tell pip to --no-use-wheel
  • Loading branch information
jordansissel committed Apr 10, 2015
2 parents 01ce6c2 + faf75e3 commit 25927d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fpm/package/python.rb
Expand Up @@ -127,7 +127,7 @@ def download_if_necessary(package, version=nil)
"--build-directory", target, want_pkg)
else
logger.debug("using pip", :pip => attributes[:python_pip])
safesystem(attributes[:python_pip], "install", "--no-deps", "--no-install", "-i", attributes[:python_pypi], "-U", "--build", target, want_pkg)
safesystem(attributes[:python_pip], "install", "--no-deps", "--no-install", "--no-use-wheel", "-i", attributes[:python_pypi], "-U", "--build", target, want_pkg)
end

# easy_install will put stuff in @tmpdir/packagename/, so find that:
Expand Down

0 comments on commit 25927d5

Please sign in to comment.