diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000000000000000000000000000000000..0a3316f15ab2032416a73e385af3af98e50e921d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,2 @@ +sudo: false +script: exit 0 diff --git a/Readme.md b/README.md similarity index 94% rename from Readme.md rename to README.md index 2d90fb105566b5d4d459b460272a651c38cf6054..7a53f1aa48eb27bbc04cfbf73ebe38655b8e4895 100644 --- a/Readme.md +++ b/README.md @@ -1,5 +1,6 @@ +- + # Heroku Buildpack: Python - This is the official [Heroku buildpack](https://devcenter.heroku.com/articles/buildpacks) for Python apps, powered by [pip](https://pip.pypa.io/) and other excellent software. diff --git a/bin/steps/cryptography b/bin/steps/cryptography index 1aa74b325de98d0e88853af129d3b93ae14f12e5..f85d2d4721dea4360dd2d3f7e53226e2545a91df 100755 --- a/bin/steps/cryptography +++ b/bin/steps/cryptography @@ -1,6 +1,6 @@ #!/usr/bin/env bash -# This script serves as the Pylibmc build step of the +# This script serves as the Cryptography build step of the # [**Python Buildpack**](https://github.com/heroku/heroku-buildpack-python) # compiler. # @@ -20,7 +20,7 @@ source $BIN_DIR/utils bpwatch start libffi_install # If a package using cffi exists within requirements, use vendored libffi. -if (pip-grep -s requirements.txt bcrypt cffi cryptography django[bcrypt] Django[bcrypt] PyNaCl pyOpenSSL PyOpenSSL requests[security] &> /dev/null) then +if (pip-grep -s requirements.txt bcrypt cffi cryptography django[bcrypt] Django[bcrypt] PyNaCl pyOpenSSL PyOpenSSL requests[security] misaka &> /dev/null) then if [ -d ".heroku/vendor/lib/libffi-3.1.1" ]; then export LIBFFI=$(pwd)/vendor diff --git a/vendor/pip-pop/pip-grep b/vendor/pip-pop/pip-grep index acf579ac8621716cc8a6e9172be99bd38471c8c2..6d29943a74a8b2367a64b52db55cf1a5c54c2b94 100755 --- a/vendor/pip-pop/pip-grep +++ b/vendor/pip-pop/pip-grep @@ -62,7 +62,7 @@ def grep(reqfile, packages, silent=False): exit(0) if not silent: - print('Not found.'.format(requirement.req.project_name)) + print('Not found.') exit(1)