Skip to content

Commit

Permalink
Fix/h5py circle ci fail (#174)
Browse files Browse the repository at this point in the history
* Answer yes to 'apt install' questions (circleci).

* Increment cache version.
  • Loading branch information
csadorf committed Apr 1, 2019
1 parent 88ede71 commit c94db7f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:

- restore_cache:
keys:
- python-env-v3-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "requirements-dev.txt" }}
- python-env-v3-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}
- python-env-v3-{{ arch }}-{{ .Environment.CIRCLE_JOB }}
- python-env-v3-{{ arch }}
- python-env-v3
- python-env-v4-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}-{{ checksum "requirements-dev.txt" }}
- python-env-v4-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "setup.py" }}
- python-env-v4-{{ arch }}-{{ .Environment.CIRCLE_JOB }}
- python-env-v4-{{ arch }}
- python-env-v4

- run:
name: install dependencies
Expand All @@ -47,9 +47,9 @@ jobs:
virtualenv ./venv
. venv/bin/activate
if [[ "$CIRCLE_JOB" == *"pypy"* ]]; then
apt update -qq && apt install -qq libhdf5-dev
apt update -qq && apt install -y -qq libhdf5-dev
else
sudo apt update -qq && sudo apt install -qq libhdf5-dev
sudo apt update -qq && sudo apt install -y -qq libhdf5-dev
fi
pip install -U pip==18
pip install -U codecov
Expand Down

0 comments on commit c94db7f

Please sign in to comment.