From 9f63a24cf8ccb649b85f579cfaecbcec0ab29ef3 Mon Sep 17 00:00:00 2001 From: Laurent Monin Date: Wed, 23 Apr 2014 15:16:29 +0200 Subject: [PATCH] Reformat api_versions list, one per line, and note about order Order is important since we have now a test case to prevent a lower version to be added. --- picard/__init__.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/picard/__init__.py b/picard/__init__.py index e8f52379b..00535b4b8 100644 --- a/picard/__init__.py +++ b/picard/__init__.py @@ -82,4 +82,13 @@ else: __version__ = PICARD_VERSION_STR PICARD_FANCY_VERSION_STR = PICARD_VERSION_STR_SHORT -api_versions = ["0.15.0", "0.15.1", "0.16.0", "1.0.0", "1.1.0", "1.2.0", "1.3.0"] +# Keep those ordered +api_versions = [ + "0.15.0", + "0.15.1", + "0.16.0", + "1.0.0", + "1.1.0", + "1.2.0", + "1.3.0", +]