vivarium-public-health 4.2.1__py3-none-any.whl → 4.2.3__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.
@@ -1 +1 @@
1
- __version__ = "4.2.1"
1
+ __version__ = "4.2.3"
@@ -183,7 +183,7 @@ class BasePopulation(Component):
183
183
  provided_new_key = False
184
184
  for layer in ["override", "model_override"]:
185
185
  try:
186
- new_key_value = self.config.get_from_layer(mapper[key], layer=layer)
186
+ new_key_value = self.config.get(mapper[key], layer=layer)
187
187
  provided_new_key = True
188
188
  break
189
189
  except ConfigurationKeyError:
@@ -577,8 +577,10 @@ def rescale_final_age_bin(builder, population_data):
577
577
 
578
578
 
579
579
  def validate_crude_birth_rate_data(builder, data_year_max):
580
- untracking_age = builder.configuration.population.to_dict().get("untracking_age", None)
581
- if untracking_age and builder.configuration.population.age_end != untracking_age:
580
+ population_config = builder.configuration.population.to_dict()
581
+ untracking_age = population_config.get("untracking_age", None)
582
+ age_end = population_config.get("age_end", None)
583
+ if untracking_age and age_end and age_end != untracking_age:
582
584
  raise ValueError(
583
585
  "If you specify an exit age, the initial population age end must be the same "
584
586
  "for the crude birth rate calculation to work."
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vivarium_public_health
3
- Version: 4.2.1
3
+ Version: 4.2.3
4
4
  Summary: Components for modelling diseases, risks, and interventions with ``vivarium``
5
5
  Home-page: https://github.com/ihmeuw/vivarium_public_health
6
6
  Author: The vivarium developers
@@ -27,7 +27,7 @@ Classifier: Topic :: Scientific/Engineering :: Physics
27
27
  Classifier: Topic :: Software Development :: Libraries
28
28
  License-File: LICENSE.txt
29
29
  Requires-Dist: vivarium>=3.4.3
30
- Requires-Dist: layered_config_tree>=1.0.1
30
+ Requires-Dist: layered_config_tree>=3.2.0
31
31
  Requires-Dist: loguru
32
32
  Requires-Dist: numpy<2.0.0
33
33
  Requires-Dist: pandas
@@ -1,6 +1,6 @@
1
1
  vivarium_public_health/__about__.py,sha256=RgWycPypKZS80TpSX7o41cREnG8PfguNHDHLuLyl820,487
2
2
  vivarium_public_health/__init__.py,sha256=GDeeP-7OlCBwPuv_xQoB1wNmvCaFsqfTB7qnnYApm0w,1343
3
- vivarium_public_health/_version.py,sha256=VOZQXJJgKJWk3sL90fY4DfBIyLB4nT1vLtvU5G_1lSo,22
3
+ vivarium_public_health/_version.py,sha256=MoxmxdSxeGEknKNgNuSVukRLQF7wGD3OGdttUMerYqw,22
4
4
  vivarium_public_health/utilities.py,sha256=QNXQ6fhAr1HcV-GwKw7wQLz6QyuNxqNvMA-XujKjTgs,3035
5
5
  vivarium_public_health/disease/__init__.py,sha256=VUJHDLlE6ngo2qHNQUtZ8OWH5H_T7_ao-xsYKDkRmHw,443
6
6
  vivarium_public_health/disease/exceptions.py,sha256=vb30IIV82OiDf2cNZCs_E2rF6mdDDHbnZSND60no5CU,97
@@ -20,8 +20,8 @@ vivarium_public_health/plugins/__init__.py,sha256=oBW_zfgG_LbwfgTDjUe0btfy9FaDvA
20
20
  vivarium_public_health/plugins/parser.py,sha256=WoUisq0d-PfJtSzKYZ6C-s-fYdQpNiRBE14vKaYE27Y,32921
21
21
  vivarium_public_health/population/__init__.py,sha256=x_9rB93q64Krw-kbBDI1-_U_JsPO1_QrL03AwiFlwXI,243
22
22
  vivarium_public_health/population/add_new_birth_cohorts.py,sha256=x6A60GE_F3I8AgLABNJ-2ziiUj52lAd66uX5yc2vIDI,9038
23
- vivarium_public_health/population/base_population.py,sha256=kBE0WVSV0aElTJNBmOBqowZlsjhDfnFn2IzNxb3X8CA,18909
24
- vivarium_public_health/population/data_transformations.py,sha256=CEID0uLIJc0xXijlHwnC9Kt8vJMKiIkJtUYcLQbbRRY,22304
23
+ vivarium_public_health/population/base_population.py,sha256=Wu797AL13KRLhXkYni_XocJBLfhfvCVgGeas08U3tCM,18898
24
+ vivarium_public_health/population/data_transformations.py,sha256=J5FUW_pQKrhMcveYvTGgNUTkK_sFdmhu1JcAZ97hAKQ,22378
25
25
  vivarium_public_health/population/mortality.py,sha256=Mtv45FENNY0GlPIoVd3d3pRq01aEh4cjzNXIgEe6hMo,10364
26
26
  vivarium_public_health/results/__init__.py,sha256=rKUZGlRXJgEyFY4a_WJeg3XnC0l34S5guYZ0N9JJS4E,319
27
27
  vivarium_public_health/results/columns.py,sha256=V-L3JgTcsk51Zx9PcUwSgaE1iZjuGyfZ8aShPjynadU,495
@@ -43,8 +43,8 @@ vivarium_public_health/treatment/__init__.py,sha256=wONElu9aJbBYwpYIovYPYaN_GYfV
43
43
  vivarium_public_health/treatment/magic_wand.py,sha256=zg4I48G-l9fC6-qjvApbM1zNACJimZlX9ZZ9fdHKwvc,1985
44
44
  vivarium_public_health/treatment/scale_up.py,sha256=_bsf9c_yVc7-q_-yBcXimISTUfYzPps1auH0uEf7sfQ,7048
45
45
  vivarium_public_health/treatment/therapeutic_inertia.py,sha256=ZIHnpuszZwA_BkS53JbSLvpcnX_bqG2knwCUyUgkA9M,2362
46
- vivarium_public_health-4.2.1.dist-info/licenses/LICENSE.txt,sha256=mN4bNLUQNcN9njYRc_3jCZkfPySVpmM6MRps104FxA4,1548
47
- vivarium_public_health-4.2.1.dist-info/METADATA,sha256=s11Zjm_ryoYhshKG5hnArhV1LLhnFOzjIqhM0FAmnBI,4237
48
- vivarium_public_health-4.2.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
49
- vivarium_public_health-4.2.1.dist-info/top_level.txt,sha256=VVInlpzCFD0UNNhjOq_j-a29odzjwUwYFTGfvqbi4dY,23
50
- vivarium_public_health-4.2.1.dist-info/RECORD,,
46
+ vivarium_public_health-4.2.3.dist-info/licenses/LICENSE.txt,sha256=mN4bNLUQNcN9njYRc_3jCZkfPySVpmM6MRps104FxA4,1548
47
+ vivarium_public_health-4.2.3.dist-info/METADATA,sha256=IHYsE9iX8IK2CJSsYu93raZducaj4S-2Yg6OtPLU6yw,4237
48
+ vivarium_public_health-4.2.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
49
+ vivarium_public_health-4.2.3.dist-info/top_level.txt,sha256=VVInlpzCFD0UNNhjOq_j-a29odzjwUwYFTGfvqbi4dY,23
50
+ vivarium_public_health-4.2.3.dist-info/RECORD,,