Skip to content

Commit

Permalink
Fix for Travis build, now requirements.txt on master is for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
David Read committed Nov 22, 2019
1 parent 73be865 commit f3e47f6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion bin/travis-build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ else
echo "CKAN version: ${CKAN_TAG#ckan-}"
fi
python setup.py develop
pip install -r requirements.txt --allow-all-external
if [ -f requirements-py2.txt ]
then
pip install -r requirements-py2.txt
else
pip install -r requirements.txt
fi
pip install -r dev-requirements.txt --allow-all-external
cd -

Expand Down

0 comments on commit f3e47f6

Please sign in to comment.