diff --git a/CHANGELOG.md b/CHANGELOG.md index 80d5410..be4f8c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### 0.1.2 [15](https://https://github.com/openfisca/openfisca-france-pension/pull/15) + +* Mise à jour dépendance OpenFisca-Core afin de résoudre conflit de dépendances avec OpenFisca-Survey-Manager + ### 0.1.1 [13](https://github.com/openfisca/openfisca-france-pension/pull/13) * Modification de environment.yml afin de rendre possible l'installation dans l'environnement CASD. @@ -32,4 +36,4 @@ ### 0.0.1 -First draft +First draft \ No newline at end of file diff --git a/Makefile b/Makefile index 7f6da95..c54653a 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ install: deps build: clean deps @# `make build` allows us to be be sure tests are run against the packaged version - python setup.py bdist_wheel + python setup.py sdist bdist_wheel find dist -name "*.whl" -exec pip install --upgrade {}[dev] \; check-syntax-errors: diff --git a/setup.py b/setup.py index bca9a76..47761cd 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name = "OpenFisca-France-Pension", python_requires='>=3.9', - version = "0.1.1", + version = "0.1.2", author = "OpenFisca Team", author_email = "contact@openfisca.org", classifiers=[ @@ -30,7 +30,7 @@ ], install_requires = [ "bottleneck >=1.3.2,<=2.0.0", - "OpenFisca-Core >= 41.5.0,<42", + "OpenFisca-Core >= 41.5.0,<44", "numba>=0.54,<1.0.0", "pandas>=2.0,<3.0", ],