mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
5496c02f9f
* updated changelog * remove setuptools sanity check * update changelog * pip-clean * changelog note * refactor codebase to improve package name detection * fix version string * cleanup * add messaging, improve execution * do uninstall first
12 lines
195 B
Bash
Executable File
12 lines
195 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Syntax sugar.
|
|
source $BIN_DIR/utils
|
|
|
|
puts-step "Removing packaging utilities from requirements.txt."
|
|
|
|
if [[ -f requirements.txt ]]; then
|
|
pip-clean requirements.txt
|
|
fi
|
|
|