summaryrefslogtreecommitdiff
path: root/.circleci
diff options
context:
space:
mode:
authorJarrod Millman <jarrod.millman@gmail.com>2020-08-10 18:55:33 -0700
committerGitHub <noreply@github.com>2020-08-10 18:55:33 -0700
commit7b4168bdb09275a2ed860b01b9dbb77a151d85c6 (patch)
tree7417c160b0a5588972647644f1ef2e10a5552a20 /.circleci
parent20a3357b91347cbde1a0dfc6fc7841fbcc72d726 (diff)
downloadnetworkx-7b4168bdb09275a2ed860b01b9dbb77a151d85c6.tar.gz
Update apt-get on circleci image (#4147)
Diffstat (limited to '.circleci')
-rw-r--r--.circleci/config.yml17
1 files changed, 11 insertions, 6 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml
index 487ac9b8..b5097ddb 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -5,23 +5,28 @@ jobs:
build:
working_directory: ~/repo
docker:
- - image: circleci/python:3.8.3-buster
+ - image: circleci/python:3.8.5-buster
steps:
- checkout
- run:
- name: install_graphviz
+ name: Update apt-get
+ command: |
+ sudo apt-get update
+
+ - run:
+ name: Install Graphviz
command: |
sudo apt-get install graphviz libgraphviz-dev
- run:
- name: install_tex
+ name: Install TeX
command: |
sudo apt-get install texlive texlive-latex-extra latexmk
- run:
- name: install_dependencies
+ name: Install Python dependencies
command: |
python3 -m venv venv
source venv/bin/activate
@@ -32,13 +37,13 @@ jobs:
pip install pydot pygraphviz
- run:
- name: install
+ name: Install
command: |
source venv/bin/activate
pip install -e .
- run:
- name: build_docs
+ name: Build docs
command: |
source venv/bin/activate
make -C doc/ html