From ade028fb04897a28e0d92a6eddec2c7bbc75bff7 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Wed, 8 Nov 2017 15:57:01 +0000 Subject: [PATCH] conda needs dev dependencies too --- .ci/build_conda_dist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/build_conda_dist.sh b/.ci/build_conda_dist.sh index 1e1fd35bc..1307a2292 100644 --- a/.ci/build_conda_dist.sh +++ b/.ci/build_conda_dist.sh @@ -12,7 +12,7 @@ name=`python ../setup.py --name` # them conda compatible... # strip all spaces -reqs=`cat ../requirements.txt | sed -e 's/ //g'` +reqs=`cat ../requirements.txt ../requirements-dev.txt | sed -e 's/ //g'` # add a space after package name - # package names must match a-zA-Z0-9_ -- GitLab