mirror of
https://github.com/kennethreitz/heroku-buildpack-python.git
synced 2026-06-05 23:10:16 +00:00
12 lines
302 B
Bash
Executable File
12 lines
302 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DEFAULT_PYTHON_VERSION="python-3.6.9"
|
|
LATEST_38="python-3.8.0"
|
|
LATEST_37="python-3.7.5"
|
|
LATEST_36="python-3.6.9"
|
|
LATEST_35="python-3.5.7"
|
|
LATEST_34="python-3.4.10"
|
|
LATEST_27="python-2.7.16"
|
|
|
|
export DEFAULT_PYTHON_VERSION LATEST_38 LATEST_37 LATEST_36 LATEST_35 LATEST_34 LATEST_27
|