Setuptools (#396)

* updated changelog

* remove setuptools sanity check
This commit is contained in:
2017-05-30 11:36:10 -04:00
committed by GitHub
parent 9b185f99d5
commit 98dc586a99
3 changed files with 2 additions and 17 deletions
+2 -1
View File
@@ -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])
-5
View File
@@ -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
-11
View File
@@ -1,11 +0,0 @@
#!/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