Compare commits

..

14 Commits

Author SHA1 Message Date
Casey ff42f318a0 Merge pull request #848 from heroku/cleanup-output
download get-pip silently
2019-09-12 16:17:11 -07:00
Casey 09b5fe4881 Merge branch 'master' into cleanup-output 2019-09-12 15:36:12 -07:00
Casey 7a431ee717 Merge pull request #847 from heroku/codeinteger-6-readme
Update README.md
2019-09-12 15:12:30 -07:00
Casey Faist a80f2be020 download get-pip silently 2019-09-12 14:31:09 -07:00
Casey 15289a94f1 Merge branch 'master' into codeinteger-6-readme 2019-09-12 14:28:16 -07:00
Casey a013e54769 Merge pull request #846 from heroku/patch-1
Patch 1 from PiDelport
2019-09-12 14:28:06 -07:00
codeinteger6 bf8f9419ec Update README.md 2019-09-12 13:39:50 -07:00
Casey 3346bbc324 Merge branch 'master' into patch-1 2019-09-12 13:31:09 -07:00
Casey ebfe4946df Merge pull request #844 from heroku/post-release-changelog
New Release: Changelog update
2019-09-12 11:25:52 -07:00
Casey Faist 0bfd1bd51f Merge branch 'patch-1' of https://github.com/PiDelport/heroku-buildpack-python into patch-1 2019-09-12 11:18:01 -07:00
Pi Delport b1b3ab1c92 (Typo: requriements -> requirements) 2019-09-12 11:13:03 -07:00
Casey dfb8185a63 Merge branch 'master' into patch-1 2019-09-12 11:13:03 -07:00
Casey Faist 1c5e876e3d post release changelog update 2019-09-12 10:06:59 -07:00
Pi Delport 3880b1affa (Typo: requriements -> requirements) 2019-06-06 21:53:26 +02:00
4 changed files with 11 additions and 11 deletions
+4 -4
View File
@@ -2,15 +2,15 @@
# Master
- Bump Hatchet tests to point at new default python version.
--------------------------------------------------------------------------------
# 156 (2019-09-12)
- Python 3.6.9 and 3.7.4 now available.
- Move get-pip utility to S3
- Build utility and documentation updates
--------------------------------------------------------------------------------
- Bump Hatchet tests to point at new default python version.
# 155 (2019-08-22)
+5 -5
View File
@@ -26,7 +26,7 @@ remote: Compressing source files... done.
remote: Building source:
remote:
remote: -----> Python app detected
remote: -----> Installing python-3.7.1
remote: -----> Installing python-3.7.4
remote: -----> Installing pip
remote: -----> Installing SQLite3
remote: -----> Installing requirements with pip
@@ -44,7 +44,7 @@ A `requirements.txt` must be present at the root of your application's repositor
To specify your python version, you also need a `runtime.txt` file - unless you are using the default Python runtime version.
Current default Python Runtime: Python 3.6.7
Current default Python Runtime: Python 3.6.9
Alternatively, you can provide a `setup.py` file, or a `Pipfile`. Using `Pipenv` will generate `runtime.txt` based on `python-version` at build time.
@@ -61,9 +61,9 @@ Specify a Python Runtime
Supported runtime options include:
- `python-3.7.1`
- `python-3.6.7`
- `python-2.7.15`
- `python-3.7.4`
- `python-3.6.9`
- `python-2.7.16`
## Tests
+1 -1
View File
@@ -26,7 +26,7 @@ fi
if [ ! "$SKIP_PIPENV_INSTALL" ]; then
# Pipenv support (Generate requriements.txt with pipenv).
# Pipenv support (Generate requirements.txt with pipenv).
if [[ -f Pipfile ]]; then
# Measure that we're using Pipenv.
mcount "tool.pipenv"
+1 -1
View File
@@ -101,7 +101,7 @@ fi
# https://github.com/pypa/get-pip
GETPIP="https://lang-python.s3.amazonaws.com/etc/get-pip.py"
if ! curl "${GETPIP}" -o "$ROOT_DIR/get-pip.py"; then
if ! curl -s "${GETPIP}" -o "$ROOT_DIR/get-pip.py" &> /dev/null; then
mcount "failure.python.get-pip"
echo "Failed to pull down get-pip"
exit 1