Remove wheels package from test-requirements.txt (#448)

This commit is contained in:
Josep Cugat 2019-10-05 15:26:34 +02:00 committed by Seth Michael Larson
parent 24346e2039
commit a1179e55e1
2 changed files with 6 additions and 1 deletions

View File

@ -15,6 +15,12 @@ if ! command -v "${PREFIX}twine" &>/dev/null ; then
exit 1
fi
if ! ${PREFIX}pip show wheel &>/dev/null ; then
echo "Unable to find the 'wheel' command."
echo "Install from PyPI, using '${PREFIX}pip install wheel'."
exit 1
fi
if ! command -v "${PREFIX}mkdocs" &>/dev/null ; then
echo "Unable to find the 'mkdocs' command."
echo "Install from PyPI, using '${PREFIX}pip install mkdocs'."

View File

@ -17,7 +17,6 @@ pytest-cov
trio
trustme
uvicorn
wheel
# https://github.com/MagicStack/uvloop/issues/266
uvloop<0.13; sys_platform != 'win32' and sys_platform != 'cygwin' and platform_python_implementation != 'pypy'