diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2021-03-30 11:19:18 +1100 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2021-03-30 11:19:18 +1100 |
commit | 5633d51714c85a6ad8c3d2528694c337d8f5e555 (patch) | |
tree | abde78cd1ff55a1b2a8022f3ff9b7cf6b044696e | |
parent | bbb42acfc91f120b068d7794e146ffd8d0d5bffe (diff) | |
download | mediagoblin-5633d51714c85a6ad8c3d2528694c337d8f5e555.tar.lz mediagoblin-5633d51714c85a6ad8c3d2528694c337d8f5e555.tar.xz mediagoblin-5633d51714c85a6ad8c3d2528694c337d8f5e555.zip |
Add feedgenerator dependency to CI and Docker files.
-rw-r--r-- | .builds/debian-10-with-site-packages.yml | 1 | ||||
-rw-r--r-- | .builds/debian-11-with-site-packages.yml | 1 | ||||
-rw-r--r-- | .builds/fedora-33-with-site-packages.yml | 1 | ||||
-rw-r--r-- | Dockerfile-debian-10-sqlite | 1 | ||||
-rw-r--r-- | Dockerfile-fedora-33-sqlite | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/.builds/debian-10-with-site-packages.yml b/.builds/debian-10-with-site-packages.yml index c1454630..c04fef02 100644 --- a/.builds/debian-10-with-site-packages.yml +++ b/.builds/debian-10-with-site-packages.yml @@ -9,6 +9,7 @@ packages: # Install make and runtime dependencies. - python3-alembic + - python3-feedgenerator - python3-jsonschema - python3-kombu - python3-lxml diff --git a/.builds/debian-11-with-site-packages.yml b/.builds/debian-11-with-site-packages.yml index 0a9fff39..26e42a27 100644 --- a/.builds/debian-11-with-site-packages.yml +++ b/.builds/debian-11-with-site-packages.yml @@ -9,6 +9,7 @@ packages: # Install make and runtime dependencies. - python3-alembic + - python3-feedgenerator - python3-jsonschema - python3-kombu - python3-lxml diff --git a/.builds/fedora-33-with-site-packages.yml b/.builds/fedora-33-with-site-packages.yml index 1e9b9c71..76b670d4 100644 --- a/.builds/fedora-33-with-site-packages.yml +++ b/.builds/fedora-33-with-site-packages.yml @@ -13,6 +13,7 @@ packages: # - findutils - python3-alembic - python3-celery + - python3-feedgenerator - python3-jsonschema - python3-kombu - python3-lxml diff --git a/Dockerfile-debian-10-sqlite b/Dockerfile-debian-10-sqlite index 8a409093..d392ec6b 100644 --- a/Dockerfile-debian-10-sqlite +++ b/Dockerfile-debian-10-sqlite @@ -69,6 +69,7 @@ virtualenv # compatible version of billiard. RUN apt-get install -y \ python3-alembic \ +python3-feedgenerator \ python3-jsonschema \ python3-kombu \ python3-lxml \ diff --git a/Dockerfile-fedora-33-sqlite b/Dockerfile-fedora-33-sqlite index 4da3a226..0737829e 100644 --- a/Dockerfile-fedora-33-sqlite +++ b/Dockerfile-fedora-33-sqlite @@ -24,6 +24,7 @@ RUN dnf -y install \ findutils \ python3-alembic \ python3-celery \ +python3-feedgenerator \ python3-jsonschema \ python3-kombu \ python3-lxml \ |