Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Python via the
python3
command instead of python
The `python` command was a transitionary symlink to `python3`, that no longer exists on Heroku-24. To fix compatibility with Heroku-24, the buildpack now calls the `python3` command directly. Both `python` and `python3` pointed to the same Python installation on all supported Heroku stacks, so this is a no-op for older stacks. In addition, the buildpack was already using Python 3 syntax in the commands it called (eg the function form of `print()`), so calling Python via the `python3` command is technically more correct regardless. Fixes #22.
- Loading branch information