From 8bc0dfffc287ac28b2a1f89e21904901e6c2da3f Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Fri, 15 Sep 2023 22:52:33 +1000 Subject: [PATCH] Update OS dependencies for Bookworm --- fabfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile.py b/fabfile.py index d34de72d..00abc7fd 100644 --- a/fabfile.py +++ b/fabfile.py @@ -18,7 +18,7 @@ hosts = os.environ['FABRIC_HOSTS'].split(',') def install_essentials(c): # ImageMagick (convert) and Inkscape required for generating badges. - c.run('sudo apt-get install -yy git python3-dev python3-venv python3-wheel build-essential python3-cairocffi python3-psycopg2 postgresql uwsgi-emperor uwsgi-plugin-python3 memcached netcat nginx certbot libmemcached-dev xmlsec1 imagemagick inkscape cronic') + c.run('sudo apt-get install -yy git python3-dev python3-venv python3-wheel build-essential python3-cairocffi python3-psycopg2 postgresql uwsgi-emperor uwsgi-plugin-python3 memcached netcat nginx certbot libpq-dev libmemcached-dev libxml2-dev libxslt-dev xmlsec1 imagemagick inkscape cronic') @task(hosts=hosts)