Skip to content

Commit

Permalink
chore: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bonjourmauko committed Sep 30, 2024
1 parent e7eca7a commit 056a08a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

setup(
name = 'OpenFisca-Survey-Manager',
version = '2.2.1',
version = '2.2.2',
author = 'OpenFisca Team',
author_email = '[email protected]',
classifiers = [classifier for classifier in classifiers.split('\n') if classifier],
Expand Down Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit 056a08a

Please sign in to comment.