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
98dc586a
Commit
98dc586a
authored
8 years ago
by
Kenneth Reitz
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Setuptools (#396)
* updated changelog * remove setuptools sanity check
parent
9b185f99
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.md
+2
-1
2 additions, 1 deletion
CHANGELOG.md
bin/compile
+0
-5
0 additions, 5 deletions
bin/compile
bin/steps/setuptools
+0
-11
0 additions, 11 deletions
bin/steps/setuptools
with
2 additions
and
17 deletions
CHANGELOG.md
+
2
−
1
View file @
98dc586a
...
...
@@ -2,8 +2,9 @@
# 104
unreleased
General improvements.
-
Fix for Heroku CI.
-
Use
`pkg_resources`
to check if a distribution is installed instead of
parsing
`requirements.txt`
. (
[
#395
][
395
]
)
...
...
This diff is collapsed.
Click to expand it.
bin/compile
+
0
−
5
View file @
98dc586a
...
...
@@ -145,11 +145,6 @@ let start=$(nowms)
source
$BIN_DIR
/steps/python
mtime
"python.install.time"
"
${
start
}
"
# Sanity check for setuptools/distribute.
let
start
=
$(
nowms
)
source
$BIN_DIR
/steps/setuptools
mtime
"setuptools.install.time"
"
${
start
}
"
# Pipenv support.
source
$BIN_DIR
/steps/pipenv
...
...
This diff is collapsed.
Click to expand it.
bin/steps/setuptools
deleted
100755 → 0
+
0
−
11
View file @
9b185f99
#!/usr/bin/env bash
# Syntax sugar.
source
$BIN_DIR
/utils
if
(
pip-grep
-s
setuptools distribute &> /dev/null
)
then
puts-warn
'The package setuptools/distribute is listed in requirements.txt.'
puts-warn
'Please remove to ensure expected behavior. '
fi
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