mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f964209589 | |||
| 2e699d392e | |||
| 431ecee509 | |||
| 90696215ae |
+1
-1
@@ -25,7 +25,7 @@ LEGACY_TRIGGER="lib/python2.7"
|
|||||||
PROFILE_PATH="$BUILD_DIR/.profile.d/python.sh"
|
PROFILE_PATH="$BUILD_DIR/.profile.d/python.sh"
|
||||||
|
|
||||||
# Python version. This will be used in the future to specify custom Pythons.
|
# Python version. This will be used in the future to specify custom Pythons.
|
||||||
DEFAULT_PYTHON_VERSION="python-2.7.3"
|
DEFAULT_PYTHON_VERSION="python-2.7.4"
|
||||||
PYTHON_EXE="/app/.heroku/python/bin/python"
|
PYTHON_EXE="/app/.heroku/python/bin/python"
|
||||||
PIP_VERSION="1.3.1"
|
PIP_VERSION="1.3.1"
|
||||||
DISTRIBUTE_VERSION="0.6.36"
|
DISTRIBUTE_VERSION="0.6.36"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [ -f $BIN_DIR/post_compile ]; then
|
if [ -f bin/post_compile ]; then
|
||||||
echo "-----> Running post-compile hook"
|
echo "-----> Running post-compile hook"
|
||||||
chmod +x $BIN_DIR/post_compile
|
chmod +x bin/post_compile
|
||||||
$BIN_DIR/post_compile
|
bin/post_compile
|
||||||
fi
|
fi
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [ -f $BIN_DIR/pre_compile ]; then
|
if [ -f bin/pre_compile ]; then
|
||||||
echo "-----> Running pre-compile hook"
|
echo "-----> Running pre-compile hook"
|
||||||
chmod +x $BIN_DIR/pre_compile
|
chmod +x bin/pre_compile
|
||||||
$BIN_DIR/pre_compile
|
bin/pre_compile
|
||||||
fi
|
fi
|
||||||
Reference in New Issue
Block a user