From 2a7d0cc6d977232303616dc77bf2250d43abb5e9 Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Thu, 1 Feb 2018 21:37:16 -0800 Subject: [PATCH] Use date-based release numbers (#11) --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2f25d98..9e0d978 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,9 @@ setup( name='python-docs-theme', - version='0.0.1', + # Version is date based as year.month[.serial], where serial is used + # if multiple releases are needed to address build failures. + version='2018.2', description='The Sphinx theme for the CPython docs and related projects', long_description=long_description, author='PyPA',