From a190ad27f2664272c52e6beabb9f60f65eaa2143 Mon Sep 17 00:00:00 2001 From: Manuel Jacob Date: Sun, 6 Nov 2016 09:00:04 +0100 Subject: [PATCH] Change version to be in normal form according to PEP 440. The version is changed from 3.0.4.dev to 3.0.4.dev0. Note that according to PEP 440 these are considered equivalent, but 3.0.4.dev0 is the normal form. This standard was followed when the version was set to 3.0.3.dev0 in commit ee284ec5, but in commit a87b1c79 the version was set to 3.0.4.dev, leaving the development number implicit again. --- CHANGELOG.rst | 4 ++-- _pytest/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 44a7f9a39..0f6f7ad02 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,5 @@ -3.0.4.dev -========= +3.0.4.dev0 +========== * diff --git a/_pytest/__init__.py b/_pytest/__init__.py index d9f72e9b4..b070c40d1 100644 --- a/_pytest/__init__.py +++ b/_pytest/__init__.py @@ -1,2 +1,2 @@ # -__version__ = '3.0.4.dev' +__version__ = '3.0.4.dev0'