]> git.ipfire.org Git - thirdparty/google/fonts.git/commitdiff
Update method of installing FontBakery
authorFelipe Corrêa da Silva Sanches <juca@members.fsf.org>
Tue, 1 Aug 2023 21:23:36 +0000 (22:23 +0100)
committerFelipe Corrêa da Silva Sanches <juca@members.fsf.org>
Wed, 2 Aug 2023 17:55:35 +0000 (18:55 +0100)
FontBakery now requires the name of the desired profile to be passed as an extra when installing it.
For google/fonts, we run the `Google Fonts` profile, so the installation
is done with `pip install --pre fontbakery[googlefonts]`

Without passing extras, only the dependencies needed by the Universal and
OpenType profiles (and any vendor-specific profile not requiring
additional deps) are installed.

.github/workflows/test.yaml

index a4d046c3d9ca06ba92cdd22fdb055ad41f001db4..f10b63329b21b63306bcf7df7a8bc854512f9b8d 100644 (file)
@@ -88,7 +88,7 @@ jobs:
         # and benefit from its newest checks:
         run: |
           pip install --upgrade pip
-          pip install --pre fontbakery
+          pip install --pre fontbakery[googlefonts]
           pip install gftools[qa] pytest
         shell: bash