Skip to content
Snippets Groups Projects
Commit 98dc586a authored by Kenneth Reitz's avatar Kenneth Reitz Committed by GitHub
Browse files

Setuptools (#396)

* updated changelog

* remove setuptools sanity check
parent 9b185f99
No related branches found
No related tags found
No related merge requests found
......@@ -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])
......
......@@ -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
......
#!/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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment