From 349a499f339fd0e758ee8bd54c09ee073cfbaf3b Mon Sep 17 00:00:00 2001 From: Nikhila Ravi Date: Thu, 23 Jan 2020 15:54:04 -0800 Subject: [PATCH] update conf.py for readthedocs Summary: Pull Request resolved: https://github.com/facebookresearch/pytorch3d/pull/4 Differential Revision: D19546949 Pulled By: nikhilaravi fbshipit-source-id: ce30785322a60c408fd6aa2f1cd3eb5d07015c7b --- docs/conf.py | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 7428dd9d..10e6bb94 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,8 +16,6 @@ import os import sys -import pytorch3d # isort: skip - import mock from recommonmark.parser import CommonMarkParser from recommonmark.states import DummyStateMachine @@ -55,11 +53,6 @@ DEPLOY = os.environ.get("READTHEDOCS") == "True" needs_sphinx = "1.7" -# The short X.Y version -version = pytorch3d.__version__ -# The full version, including alpha/beta/rc tags -release = version - try: import torch # noqa except ImportError: @@ -87,6 +80,9 @@ project = "PyTorch3D" copyright = "2019, facebookresearch" author = "facebookresearch" +# The short X.Y version +version = "v0.1" + # The full version, including alpha/beta/rc tags release = "v0.1"