From 2e8266f59df3eb63550de35fb1b210865b5f3149 Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Thu, 1 Feb 2018 21:28:13 -0800 Subject: [PATCH 1/2] Use date-based release numbers --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2f25d98f..630be126 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,8 @@ setup( name='python-docs-theme', - version='0.0.1', + # Version is date based as year.month[.day]. + version='2018.2', description='The Sphinx theme for the CPython docs and related projects', long_description=long_description, author='PyPA', From 13f9ec6f327ea58c6873eef71775cbfab7463aed Mon Sep 17 00:00:00 2001 From: Jon Wayne Parrott Date: Thu, 1 Feb 2018 21:36:59 -0800 Subject: [PATCH 2/2] Update setup.py --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 630be126..9e0d978e 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,8 @@ setup( name='python-docs-theme', - # Version is date based as year.month[.day]. + # 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,