From 8821653346dd0c2fc22a45c7eb08a2d4c87acb3c Mon Sep 17 00:00:00 2001 From: Allan - CodeWorks Date: Mon, 17 Apr 2023 16:39:41 +0200 Subject: [PATCH] Ajoute un commentaire explicatif --- .github/get_minimal_version.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/get_minimal_version.py b/.github/get_minimal_version.py index 428b251cae..bd673b738d 100644 --- a/.github/get_minimal_version.py +++ b/.github/get_minimal_version.py @@ -1,6 +1,7 @@ import re - +# This script fetches and prints the minimal versions of Openfisca-Core and Openfisca-France +# dependencies in order to ensure their compatibility during CI testing with open('./setup.py') as file: for line in file: version = re.search(r'(Core|France)\s*>=\s*([\d\.]*)', line)