From 4921d4e59f06c8add15a347c8b97b72b8d9baa74 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Tue, 17 Nov 2015 11:51:26 -0500 Subject: Fixed #25769 -- Updated get_version() release candidate naming for PEP 0440. --- tests/version/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/version/tests.py b/tests/version/tests.py index a7ae848984..b0566685b6 100644 --- a/tests/version/tests.py +++ b/tests/version/tests.py @@ -17,9 +17,9 @@ class VersionTests(TestCase): tuples_to_strings = ( ((1, 4, 0, 'alpha', 1), '1.4a1'), ((1, 4, 0, 'beta', 1), '1.4b1'), - ((1, 4, 0, 'rc', 1), '1.4c1'), + ((1, 4, 0, 'rc', 1), '1.4rc1'), ((1, 4, 0, 'final', 0), '1.4'), - ((1, 4, 1, 'rc', 2), '1.4.1c2'), + ((1, 4, 1, 'rc', 2), '1.4.1rc2'), ((1, 4, 1, 'final', 0), '1.4.1'), ) for ver_tuple, ver_string in tuples_to_strings: -- cgit v1.3