From 7e76645db0b4a8efdc27a28d4b5e5396ca88a0f9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 6 Apr 2021 20:40:13 +0200 Subject: [PATCH] package/ci: install attrs as well. Got a slight drop in coverage due to that. --- package/ci/circleci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package/ci/circleci.yml b/package/ci/circleci.yml index d203cd25..68272e6c 100644 --- a/package/ci/circleci.yml +++ b/package/ci/circleci.yml @@ -39,6 +39,9 @@ commands: install-python-deps: parameters: + extra: + type: string + default: "" matplotlib-version: type: string default: "" @@ -53,7 +56,7 @@ commands: # older until I can investigate; on Py3.5 there's only 3.0 so this is # being set explicitly in py36 and py37 build command: | - pip install jinja2 pelican==4.2.0 Pyphen==0.9.5 Pillow coverage codecov qrcode matplotlib<< parameters.matplotlib-version >> + pip install jinja2 pelican==4.2.0 Pyphen==0.9.5 Pillow coverage codecov qrcode matplotlib<< parameters.matplotlib-version >> << parameters.extra >> - run: name: Fix unheard-of cursed issues # otherwise i get Error: unsupported locale setting @@ -186,6 +189,7 @@ jobs: extra: graphviz cmake ninja-build wget - install-python-deps: matplotlib-version: ==3.3.4 + extra: attrs - checkout - test-theme - test-plugins @@ -201,6 +205,7 @@ jobs: extra: graphviz cmake ninja-build wget - install-python-deps: matplotlib-version: ==3.3.4 + extra: attrs - checkout - test-theme - test-plugins -- 2.30.2