]> git.ipfire.org Git - thirdparty/httpx.git/commitdiff
Remove wheels package from test-requirements.txt (#448)
authorJosep Cugat <jcugat@gmail.com>
Sat, 5 Oct 2019 13:26:34 +0000 (15:26 +0200)
committerSeth Michael Larson <sethmichaellarson@gmail.com>
Sat, 5 Oct 2019 13:26:34 +0000 (08:26 -0500)
scripts/publish
test-requirements.txt

index 5ab9ead151e2879ef6b0c81a8efc9137f6d70b55..cbbda3324ac6b60d54ec6b4252aba51c8cec286f 100755 (executable)
@@ -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'."
index 749b3ad7da39e567cf0bd81f58d57b8fd2284708..be06182e926a9411346bc976e0ffa3a2d0fdb3c7 100644 (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'