Add support for linking to issues and adding datestamps to changelog entries.

This commit is contained in:
Jason R. Coombs
2016-04-02 22:23:15 -04:00
parent 58f71d1e2b
commit 01e953bac9
3 changed files with 22 additions and 2 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ with io.open('README.rst', encoding='utf-8') as readme:
needs_pytest = {'pytest', 'test'}.intersection(sys.argv)
pytest_runner = ['pytest_runner'] if needs_pytest else []
needs_sphinx = {'release', 'build_sphinx', 'upload_docs'}.intersection(sys.argv)
sphinx = ['sphinx'] if needs_sphinx else []
sphinx = ['sphinx', 'rst.linker'] if needs_sphinx else []
needs_wheel = {'release', 'bdist_wheel'}.intersection(sys.argv)
wheel = ['wheel'] if needs_wheel else []