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
98dc586a
Commit
98dc586a
authored
May 30, 2017
by
Kenneth Reitz
Committed by
GitHub
May 30, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Setuptools (#396)
* updated changelog * remove setuptools sanity check
parent
9b185f99
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
17 deletions
+2
-17
CHANGELOG.md
CHANGELOG.md
+2
-1
compile
bin/compile
+0
-5
setuptools
bin/steps/setuptools
+0
-11
No files found.
CHANGELOG.md
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
]
)
...
...
bin/compile
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
...
...
bin/steps/setuptools
deleted
100755 → 0
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
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