diff options
author | Stefan van der Walt <stefanv@berkeley.edu> | 2018-03-22 01:00:53 -0700 |
---|---|---|
committer | Stefan van der Walt <stefanv@berkeley.edu> | 2018-03-22 01:00:53 -0700 |
commit | 5b3c5646a7bc0e8253e55f68cf9a24bb245d5be7 (patch) | |
tree | 376d51c4e887ca6428414fc2f2da720309a42680 /.circleci | |
parent | 6feff8f4ba41802b4356e651df2e0c130c9ddecb (diff) | |
download | numpy-5b3c5646a7bc0e8253e55f68cf9a24bb245d5be7.tar.gz |
Install graphviz on CircleCI
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 70cb8adc0..f1989afc8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,6 +21,8 @@ jobs: python3 -m venv venv . venv/bin/activate pip install cython sphinx matplotlib + sudo apt-get update + sudo apt-get install -y graphviz - run: name: build numpy |