Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
H
heroku-buildpack-python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Python-Dev
heroku-buildpack-python
Commits
63e84ace
Unverified
Commit
63e84ace
authored
Oct 08, 2018
by
Casey
Committed by
GitHub
Oct 08, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #760 from heroku/add-airflow-110-support
Add Apache Airflow 1.10 Support
parents
d3180d32
eee8dd9a
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
42 additions
and
3 deletions
+42
-3
CHANGELOG.md
CHANGELOG.md
+6
-1
pip-install
bin/steps/pip-install
+15
-1
pipenv
bin/steps/pipenv
+13
-1
requirements.txt
test/fixtures/airflow/requirements.txt
+1
-0
run
test/run
+7
-0
No files found.
CHANGELOG.md
View file @
63e84ace
# Python Buildpack Changelog
# 139
# 140 (2018-10-09)
Add support for detecting SLUGIFY_USES_TEXT_UNIDECODE, which is required to
install Apache Airflow version 1.10 or higher.
# 139 (2018-10-08)
Improvements to Python install messaging
...
...
bin/steps/pip-install
View file @
63e84ace
...
...
@@ -8,10 +8,24 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then
# Install dependencies with Pip.
puts-step
"Installing requirements with pip"
# Set PIP_EXTRA_INDEX_URL
# Set Pip env vars
# This reads certain environment variables set on the Heroku app config
# and makes them accessible to the pip install process.
#
# PIP_EXTRA_INDEX_URL allows for an alternate pypi URL to be used.
if
[[
-r
$ENV_DIR
/PIP_EXTRA_INDEX_URL
]]
;
then
PIP_EXTRA_INDEX_URL
=
"
$(
cat
"
$ENV_DIR
/PIP_EXTRA_INDEX_URL"
)
"
export
PIP_EXTRA_INDEX_URL
mcount
"buildvar.PIP_EXTRA_INDEX_URL"
fi
set
+e
# Set SLUGIFY_USES_TEXT_UNIDECODE, required for Airflow versions >=1.10
if
[[
-r
$ENV_DIR
/SLUGIFY_USES_TEXT_UNIDECODE
]]
;
then
SLUGIFY_USES_TEXT_UNIDECODE
=
"
$(
cat
"
$ENV_DIR
/SLUGIFY_USES_TEXT_UNIDECODE"
)
"
export
SLUGIFY_USES_TEXT_UNIDECODE
mcount
"buildvar.SLUGIFY_USES_TEXT_UNIDECODE"
fi
set
+e
...
...
bin/steps/pipenv
View file @
63e84ace
...
...
@@ -35,10 +35,22 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
# Skip pip install, later.
export
SKIP_PIP_INSTALL
=
1
# Set PIP_EXTRA_INDEX_URL
# Set Pip env vars
# This reads certain environment variables set on the Heroku app config
# and makes them accessible to the pip install process.
#
# PIP_EXTRA_INDEX_URL allows for an alternate pypi URL to be used.
if
[[
-r
$ENV_DIR
/PIP_EXTRA_INDEX_URL
]]
;
then
PIP_EXTRA_INDEX_URL
=
"
$(
cat
"
$ENV_DIR
/PIP_EXTRA_INDEX_URL"
)
"
export
PIP_EXTRA_INDEX_URL
mcount
"buildvar.PIP_EXTRA_INDEX_URL"
fi
# Set SLUGIFY_USES_TEXT_UNIDECODE, required for Airflow versions >=1.10
if
[[
-r
$ENV_DIR
/SLUGIFY_USES_TEXT_UNIDECODE
]]
;
then
SLUGIFY_USES_TEXT_UNIDECODE
=
"
$(
cat
"
$ENV_DIR
/SLUGIFY_USES_TEXT_UNIDECODE"
)
"
export
SLUGIFY_USES_TEXT_UNIDECODE
mcount
"buildvar.SLUGIFY_USES_TEXT_UNIDECODE"
fi
export
PIPENV_VERSION
=
"2018.5.18"
...
...
test/fixtures/airflow/requirements.txt
0 → 100644
View file @
63e84ace
apache-airflow==1.10
test/run
View file @
63e84ace
#!/usr/bin/env bash
testAirflow
()
{
export
SLUGIFY_USES_TEXT_UNIDECODE
=
"yes"
compile
"airflow"
assertCaptured
"apache-airflow==1.10"
assertCapturedSuccess
}
testPipenv
()
{
compile
"pipenv"
assertCapturedSuccess
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment