Skip to content

Commit 23179e7

Browse files
committed
MAINT fix ci script
1 parent 3bfde56 commit 23179e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci_scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ conda create -n testenv --yes python=$PYTHON_VERSION pip nose
2828
source activate testenv
2929

3030
# Install requirements in correct order
31-
pip install -r requirements.txt
31+
cat requirements.txt | xargs -n 1 -L 1 pip install
3232

3333
if [[ "$COVERAGE" == "true" ]]; then
3434
pip install coverage coveralls

doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Please install all dependencies manually with:
5656

5757
.. code:: bash
5858
59-
pip install -r https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt
59+
cat https://raw.githubusercontent.com/automl/auto-sklearn/master/requirements.txt | xargs -n 1 -L 1 pip install
6060
6161
Then install *auto-sklearn*
6262

0 commit comments

Comments
 (0)