You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-5Lines changed: 3 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -165,9 +165,7 @@ option and can't be accessed by PyCall.
165
165
There are many ways to make our heroku use Python that is compiled with the `--enabled-shared` option.
166
166
167
167
- use Heroku's official Python buildpacks `post_compile` hooks to recompile the python if the `--enabled-shared` option is not enabled.
168
-
169
-
here are the example script of `post_compile` in ruby on rails app
170
-
168
+
example script of `post_compile` in ruby on rails app
171
169
`bin/post_compile`
172
170
173
171
set -e
@@ -187,8 +185,8 @@ There are many ways to make our heroku use Python that is compiled with the `--e
187
185
rm -fr _buildpack
188
186
fi
189
187
190
-
- use your own precompiled python with `--enabled-shared` options then fork the official heroku [python buildspacks](https://github.com/heroku/heroku-buildpack-python) and change the `BUILDPACK_S3_BASE_URL` with your own uploaded precompiled python in Amazon's S3
191
-
- use 3rd party buildpacks from the [markets](https://elements.heroku.com/buildpacks) that have python with `--enabled-shared` option
188
+
- use your own precompiled python with `--enabled-shared` options then fork the official heroku [python buildspacks](https://github.com/heroku/heroku-buildpack-python) and change the `BUILDPACK_S3_BASE_URL` with your own uploaded precompiled python in Amazon's S3.
189
+
- use 3rd party buildpacks from the [markets](https://elements.heroku.com/buildpacks) that have python with `--enabled-shared` option.
192
190
193
191
194
192
The buildpack will expect to find both a `runtime.txt` and a `requirements.txt`
0 commit comments