From c87b9e686999893c996fdc9a8dc61db631e7bda4 Mon Sep 17 00:00:00 2001 From: Paul Zhang Date: Tue, 9 Jan 2024 11:46:57 -0800 Subject: [PATCH] Fix Github Page Title Version (#1616) Summary: Pull Request resolved: https://github.com/pytorch/torchrec/pull/1616 Differential Revision: D52631662 --- docs/source/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index 4011be287..529c16141 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -21,6 +21,7 @@ import sys import pytorch_sphinx_theme +import torchrec current_dir = os.path.dirname(__file__) target_dir = os.path.abspath(os.path.join(current_dir, "../..")) @@ -34,7 +35,7 @@ author = "Meta" # The full version, including alpha/beta/rc tags -release = "0.0.1" +release = torchrec.__version__ # -- General configuration ---------------------------------------------------