hestia-earth-models 0.72.0__py3-none-any.whl → 0.72.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. hestia_earth/models/cml2001Baseline/resourceUseEnergyDepletionInputsProduction.py +2 -1
  2. hestia_earth/models/cml2001Baseline/resourceUseMineralsAndMetalsInputsProduction.py +2 -1
  3. hestia_earth/models/config/ImpactAssessment.json +1964 -1918
  4. hestia_earth/models/ecoalimV9/cycle.py +1 -0
  5. hestia_earth/models/ecoalimV9/impact_assessment.py +1 -0
  6. hestia_earth/models/ecoinventV3/__init__.py +1 -0
  7. hestia_earth/models/ecoinventV3AndEmberClimate/__init__.py +1 -0
  8. hestia_earth/models/environmentalFootprintV3_1/environmentalFootprintSingleOverallScore.py +19 -3
  9. hestia_earth/models/hestia/landCover.py +10 -2
  10. hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py +27 -27
  11. hestia_earth/models/linkedImpactAssessment/emissions.py +1 -0
  12. hestia_earth/models/linkedImpactAssessment/utils.py +16 -16
  13. hestia_earth/models/mocking/search-results.json +660 -660
  14. hestia_earth/models/version.py +1 -1
  15. {hestia_earth_models-0.72.0.dist-info → hestia_earth_models-0.72.2.dist-info}/METADATA +1 -1
  16. {hestia_earth_models-0.72.0.dist-info → hestia_earth_models-0.72.2.dist-info}/RECORD +21 -21
  17. tests/models/environmentalFootprintV3_1/test_environmentalFootprintSingleOverallScore.py +22 -2
  18. tests/models/ipcc2019/test_co2ToAirUreaHydrolysis.py +10 -34
  19. {hestia_earth_models-0.72.0.dist-info → hestia_earth_models-0.72.2.dist-info}/LICENSE +0 -0
  20. {hestia_earth_models-0.72.0.dist-info → hestia_earth_models-0.72.2.dist-info}/WHEEL +0 -0
  21. {hestia_earth_models-0.72.0.dist-info → hestia_earth_models-0.72.2.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,5 @@
1
1
  from hestia_earth.models.linkedImpactAssessment.utils import run_inputs_production
2
+ from . import MODEL
2
3
 
3
4
  REQUIREMENTS = {
4
5
  "ImpactAssessment": {
@@ -37,4 +38,4 @@ RETURNS = {
37
38
  TERM_ID = 'resourceUseEnergyDepletionInputsProduction'
38
39
 
39
40
 
40
- def run(impact_assessment: dict): return run_inputs_production(impact_assessment, TERM_ID)
41
+ def run(impact_assessment: dict): return run_inputs_production(impact_assessment, TERM_ID, MODEL)
@@ -1,4 +1,5 @@
1
1
  from hestia_earth.models.linkedImpactAssessment.utils import run_inputs_production
2
+ from . import MODEL
2
3
 
3
4
  REQUIREMENTS = {
4
5
  "ImpactAssessment": {
@@ -37,4 +38,4 @@ RETURNS = {
37
38
  TERM_ID = 'resourceUseMineralsAndMetalsInputsProduction'
38
39
 
39
40
 
40
- def run(impact_assessment: dict): return run_inputs_production(impact_assessment, TERM_ID)
41
+ def run(impact_assessment: dict): return run_inputs_production(impact_assessment, TERM_ID, MODEL)