diff options
-rw-r--r-- | docs/conf.py | 2 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py index 6570f661..1bf9c334 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -256,7 +256,7 @@ link_files = { ), dict( pattern=r"^(?m)((?P<scm_version>\d+(\.\d+){1,2}))\n[-=]+\n", - with_scm="{text}\n{rev[timestamp]}\n", + with_scm="{text}\n{rev[timestamp]:%d %b %Y}\n", ), ], ), @@ -67,7 +67,7 @@ if (sys.platform == 'win32' or (os.name == 'java' and os._name == 'nt')) \ needs_pytest = set(['ptr', 'pytest', 'test']).intersection(sys.argv) pytest_runner = ['pytest-runner'] if needs_pytest else [] needs_sphinx = set(['build_sphinx', 'upload_docs']).intersection(sys.argv) -sphinx = ['sphinx', 'rst.linker>=1.4'] if needs_sphinx else [] +sphinx = ['sphinx', 'rst.linker>=1.5'] if needs_sphinx else [] setup_params = dict( name="setuptools", |