Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
heroku-buildpack-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Evili del Rio i Silvan
heroku-buildpack-python
Commits
45b78ab5
Commit
45b78ab5
authored
6 years ago
by
Casey Faist
Browse files
Options
Downloads
Patches
Plain Diff
pin pip version used by pipenv
parent
63e84ace
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bin/steps/pip-install
+2
-2
2 additions, 2 deletions
bin/steps/pip-install
bin/steps/pipenv
+6
-4
6 additions, 4 deletions
bin/steps/pipenv
with
8 additions
and
6 deletions
bin/steps/pip-install
+
2
−
2
View file @
45b78ab5
...
...
@@ -13,7 +13,7 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then
# 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
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"
...
...
@@ -22,7 +22,7 @@ if [ ! "$SKIP_PIP_INSTALL" ]; then
set
+e
# Set SLUGIFY_USES_TEXT_UNIDECODE, required for Airflow versions >=1.10
if
[[
-r
$ENV_DIR
/SLUGIFY_USES_TEXT_UNIDECODE
]]
;
then
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"
...
...
This diff is collapsed.
Click to expand it.
bin/steps/pipenv
+
6
−
4
View file @
45b78ab5
...
...
@@ -20,7 +20,6 @@ if [[ -f Pipfile.lock ]]; then
export
SKIP_PIPENV_INSTALL
=
1
export
SKIP_PIP_INSTALL
=
1
fi
fi
fi
fi
...
...
@@ -40,14 +39,14 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
# 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
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
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"
...
...
@@ -56,7 +55,10 @@ if [ ! "$SKIP_PIPENV_INSTALL" ]; then
export
PIPENV_VERSION
=
"2018.5.18"
# Install pipenv.
/app/.heroku/python/bin/pip
install
pipenv
==
$PIPENV_VERSION
--upgrade
&> /dev/null
# Due to weird old pip behavior and pipenv behavior, pipenv upgrades pip
# to latest if only --upgrade is specified. Specify upgrade strategy to
# avoid this eager behavior.
/app/.heroku/python/bin/pip
install
pipenv
==
$PIPENV_VERSION
--upgrade
--upgrade-strategy
only-if-needed &> /dev/null
# Install the dependencies.
if
[[
!
-f
Pipfile.lock
]]
;
then
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment