diff options
-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 \ |