From 620d00a1b73eb059aabf124a8153e1457271ee4a Mon Sep 17 00:00:00 2001 From: Mahdi Ben Jelloul Date: Fri, 31 May 2024 15:04:32 +0100 Subject: [PATCH] Fix CI --- .github/get_minimal_version.py | 3 ++- setup.py | 8 ++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/get_minimal_version.py b/.github/get_minimal_version.py index f9723a4..c6d1f34 100644 --- a/.github/get_minimal_version.py +++ b/.github/get_minimal_version.py @@ -4,6 +4,7 @@ # 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-Pension)\s*>=\s*([\d\.]*)', line) + # version = re.search(r'(Core|France-Pension)\s*>=\s*([\d\.]*)', line) # Use when proper core version will be used + version = re.search(r'(France-Pension)\s*>=\s*([\d\.]*)', line) if version: print(f'Openfisca-{version[1]}=={version[2]}') # noqa: T201 <- This is to avoid flake8 print detection. diff --git a/setup.py b/setup.py index e26f4a8..002ca23 100644 --- a/setup.py +++ b/setup.py @@ -42,10 +42,10 @@ "flake8-print", "pycodestyle >=2.6.0", ], - "scenario": [ - "OpenFisca-Survey-Manager >=0.46.6,<1.0.0", - "pyreadr>=0.4.2,<1.0.0", - ] + # "scenario": [ + # # "OpenFisca-Survey-Manager >=0.46.6,<1.0.0", + # # "pyreadr>=0.4.2,<1.0.0", + # ] }, packages=find_packages(), )