Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
heroku-buildpack-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Evili del Rio i Silvan
heroku-buildpack-python
Commits
a7976fc1
Commit
a7976fc1
authored
9 years ago
by
Kenneth Reitz
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
87d03e62
928a6645
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+2
-0
2 additions, 0 deletions
.travis.yml
README.md
+2
-1
2 additions, 1 deletion
README.md
bin/steps/cryptography
+2
-2
2 additions, 2 deletions
bin/steps/cryptography
vendor/pip-pop/pip-grep
+1
-1
1 addition, 1 deletion
vendor/pip-pop/pip-grep
with
7 additions
and
4 deletions
.travis.yml
0 → 100644
+
2
−
0
View file @
a7976fc1
sudo
:
false
script
:
exit
0
This diff is collapsed.
Click to expand it.
R
eadme
.md
→
R
EADME
.md
+
2
−
1
View file @
a7976fc1
-!
[
python
](
https://cloud.githubusercontent.com/assets/51578/13712821/b68a42ce-e793-11e5-96b0-d8eb978137ba.png
)
# 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.
...
...
This diff is collapsed.
Click to expand it.
bin/steps/cryptography
+
2
−
2
View file @
a7976fc1
#!/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
...
...
This diff is collapsed.
Click to expand it.
vendor/pip-pop/pip-grep
+
1
−
1
View file @
a7976fc1
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment