From 4f6f7388aab5f1509e04b0690d7979712b3c775b Mon Sep 17 00:00:00 2001 From: Mahdi Ben Jelloul Date: Tue, 22 Oct 2024 14:38:34 +0100 Subject: [PATCH] Fix conda deploy (#307) * Fix conda deploy --- .conda/meta.yaml | 2 +- CHANGELOG.md | 9 +++++++-- setup.py | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.conda/meta.yaml b/.conda/meta.yaml index b08494cf..39eb8759 100644 --- a/.conda/meta.yaml +++ b/.conda/meta.yaml @@ -30,7 +30,7 @@ requirements: # PyPI 'tables' library is named 'pytables' for conda - {{ req.replace('tables', 'pytables') }} {% else %} - - {{ req }} + - {{ req | replace(" ","")}} {% endif %} {% endfor %} diff --git a/CHANGELOG.md b/CHANGELOG.md index 296f169e..4823290b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ # Changelog -### 2.2.3 [#304](https://github.com/openfisca/openfisca-survey-manager/pull/304) +### 2.2.5 [#305](https://github.com/openfisca/openfisca-survey-manager/pull/305) * Minor change. - Add docstrings and types to some tests. -### 2.2.2 [#297](https://github.com/openfisca/openfisca-survey-manager/pull/297) +### 2.2.4 [#304](https://github.com/openfisca/openfisca-survey-manager/pull/304) + +* Minor change. + - Add docstrings and types to some tests. + +### 2.2.3 [#297](https://github.com/openfisca/openfisca-survey-manager/pull/297) * Minor change. - Update configarser to 8.0.0 diff --git a/setup.py b/setup.py index 5d4e6e30..866e7dbf 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( name = 'OpenFisca-Survey-Manager', - version = '2.2.4', + version = '2.2.5', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [classifier for classifier in classifiers.split('\n') if classifier],