Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade openfisca survey manager #268

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

### 3.7.3 [#268](https://github.com/openfisca/openfisca-france-data/pull/268)

* Technical changes
- Bump de la version d'openfisca-survey-manager en dépendances et adaptation du code à ce bump

### 3.7.2 [#265](https://github.com/openfisca/openfisca-france-data/pull/265)

* Technical changes :
Expand Down
2 changes: 1 addition & 1 deletion openfisca_france_data/erfs_fpr/get_survey_scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from openfisca_france_data.erfs_fpr.scenario import ErfsFprSurveyScenario
from openfisca_france_data import france_data_tax_benefit_system

from openfisca_survey_manager import default_config_files_directory
from openfisca_survey_manager.paths import default_config_files_directory

from openfisca_france_data.model.id_variables import (
idmen_original,
Expand Down
2 changes: 1 addition & 1 deletion openfisca_france_data/pote/input_data_builder/console.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from openfisca_france_data.pote.input_data_builder.step_02_b_simulation_credits_reductions import simulation_preparation_credits_reductions
from openfisca_france_data.pote.input_data_builder.step_02_c_create_table_foyer_fiscal import create_table_foyer_fiscal
from openfisca_france_data.pote.input_data_builder.analyse_variables import liens_variables
from openfisca_survey_manager import default_config_files_directory
from openfisca_survey_manager.paths import default_config_files_directory

log = logging.getLogger(__name__)
log.setLevel(logging.INFO)
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name = "OpenFisca-France-Data",
version = "3.7.2",
version = "3.7.3",
description = "OpenFisca-France-Data module to work with French survey data",
long_description = long_description,
long_description_content_type="text/markdown",
Expand Down Expand Up @@ -44,7 +44,7 @@
install_requires = [
"multipledispatch >=0.6.0, <1.0.0",
"OpenFisca-France >=169.0.0, <170.0.0",
"openFisca-survey-manager >=2.3.0, <2.4.0",
"OpenFisca-survey-manager >=3.0.0, <4.0.0",
],
extras_require = {
"test": [
Expand Down
2 changes: 1 addition & 1 deletion tests/pote/test_pote_survey_scenario.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from openfisca_france_data.pote.survey_scenario import PoteSurveyScenario
from openfisca_survey_manager import default_config_files_directory
from openfisca_survey_manager.paths import default_config_files_directory

def test_pote_survey_scenario(period=2022, config_file_directory=default_config_files_directory):
survey_scenario = PoteSurveyScenario(period = period, config_files_directory=config_file_directory)
Expand Down
Loading