From 7f5061c0b78631e76e4086daf89d45f07782aabf Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Tue, 30 Jun 2020 11:05:42 +0200 Subject: [PATCH] gallium/docs: update to recent sphinx add_description_unit has been deprectated for a really long time, and was finally removed (seemingly in Sphinx 2.0, but this doesn't seem to be properly documented anywhere I can find), so we shouldn't be using this any more. Anyway, let's update the code. Acked-by: Alyssa Rosenzweig Acked-by: Eric Engestrom Part-of: --- src/gallium/docs/source/exts/formatting.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gallium/docs/source/exts/formatting.py b/src/gallium/docs/source/exts/formatting.py index 14865f36033..bc50c98051c 100644 --- a/src/gallium/docs/source/exts/formatting.py +++ b/src/gallium/docs/source/exts/formatting.py @@ -25,7 +25,7 @@ def parse_opcode(env, sig, signode): return opcode def setup(app): - app.add_description_unit("envvar", "envvar", "%s (environment variable)", + app.add_object_type("envvar", "envvar", "%s (environment variable)", parse_envvar) - app.add_description_unit("opcode", "opcode", "%s (TGSI opcode)", + app.add_object_type("opcode", "opcode", "%s (TGSI opcode)", parse_opcode) -- 2.30.2