From 056a08a180ac686e60a005140696231efa4e03cb Mon Sep 17 00:00:00 2001 From: Mauko Quiroga Date: Fri, 27 Sep 2024 01:26:03 +0200 Subject: [PATCH] chore: version bump --- CHANGELOG.md | 7 ++++++- Makefile | 2 +- setup.py | 6 +++--- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 014c835c..3d5302bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog -## 2.2.1 [#298](https://github.com/openfisca/openfisca-survey-manager/pull/298) +### 2.2.2 [#302](https://github.com/openfisca/openfisca-survey-manager/pull/302) + +* Minor change. + - Update OpenFisca-Core to 42.0.0 + +### 2.2.1 [#298](https://github.com/openfisca/openfisca-survey-manager/pull/298) * For `compute_aggregate`, replace the warning by an assert when `weighted = True` (the default) and no weight is defined for the variable. Before, a warning was displayed and the aggregate was computed using uniform weights. diff --git a/Makefile b/Makefile index 9b32f8f9..79a9aca5 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ all: test uninstall: - pip freeze | grep -v "^-e" | xargs pip uninstall -y + pip freeze | grep -v "^-e" | sed "s/@.*//" | xargs pip uninstall -y clean: rm -rf build dist diff --git a/setup.py b/setup.py index 6af6f383..77351aed 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( name = 'OpenFisca-Survey-Manager', - version = '2.2.1', + version = '2.2.2', author = 'OpenFisca Team', author_email = 'contact@openfisca.fr', classifiers = [classifier for classifier in classifiers.split('\n') if classifier], @@ -64,7 +64,7 @@ 'flake8-docstrings >=1.7.0, < 2.0', 'flake8-print >=5.0.0, < 6.0', 'flake8-rst-docstrings >=0.3.0, < 0.4.0', - 'openfisca-country-template @ https://github.com/openfisca/country-template/archive/chore/update-core-42.0.0.zip', + 'openfisca-country-template >=7.1.5, <8.0.0', 'pytest >=8.3.3, < 9.0', 'pytest-cov >=4.0.0, < 5.0', 'scipy >=1.10.1, < 2.0', @@ -87,7 +87,7 @@ 'chardet >=5.1.0, < 6.0', 'configparser >=5.3.0, < 6.0', 'humanize >=4.6.0, < 5.0', - 'openfisca-core @ https://github.com/openfisca/openfisca-core/archive/fix-mypy-checks-periods.zip', + 'openfisca-core >=42.0.0, <43.0.0', 'pandas >=2.0.3, < 3.0', 'pyarrow >=13.0.0, < 14.0.0', 'pyxdg >=0.28, < 0.29',