hpvsim 2.2.6__tar.gz → 2.3.0__tar.gz

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 (209) hide show
  1. {hpvsim-2.2.6 → hpvsim-2.3.0}/.gitignore +12 -1
  2. hpvsim-2.3.0/CHANGELOG.md +490 -0
  3. hpvsim-2.3.0/CODE_OF_CONDUCT.md +82 -0
  4. {hpvsim-2.2.6 → hpvsim-2.3.0}/MANIFEST.in +1 -1
  5. hpvsim-2.3.0/PKG-INFO +117 -0
  6. hpvsim-2.3.0/README.md +87 -0
  7. hpvsim-2.3.0/docs/.gitignore +4 -0
  8. hpvsim-2.3.0/docs/CNAME +1 -0
  9. hpvsim-2.3.0/docs/README.md +30 -0
  10. hpvsim-2.3.0/docs/_quarto.yml +184 -0
  11. hpvsim-2.3.0/docs/_variables.yml +2 -0
  12. hpvsim-2.3.0/docs/assets/favicon.ico +0 -0
  13. hpvsim-2.3.0/docs/assets/starsim-logo-dark.png +0 -0
  14. hpvsim-2.3.0/docs/assets/starsim-logo.png +0 -0
  15. hpvsim-2.3.0/docs/assets/styles-dark.scss +127 -0
  16. hpvsim-2.3.0/docs/assets/styles-light.scss +5 -0
  17. hpvsim-2.3.0/docs/assets/styles.css +38 -0
  18. hpvsim-2.3.0/docs/conduct.md +5 -0
  19. hpvsim-2.3.0/docs/index.md +12 -0
  20. hpvsim-2.3.0/docs/overview.md +5 -0
  21. hpvsim-2.3.0/docs/preview +5 -0
  22. hpvsim-2.3.0/docs/publish +6 -0
  23. hpvsim-2.3.0/docs/quarto_utils.py +103 -0
  24. hpvsim-2.3.0/docs/render +11 -0
  25. hpvsim-2.3.0/docs/requirements.txt +2 -0
  26. hpvsim-2.3.0/docs/tutorials/tut_analyzers.qmd +138 -0
  27. hpvsim-2.3.0/docs/tutorials/tut_calibration.qmd +92 -0
  28. hpvsim-2.3.0/docs/tutorials/tut_interventions.qmd +167 -0
  29. hpvsim-2.3.0/docs/tutorials/tut_intro.qmd +115 -0
  30. hpvsim-2.3.0/docs/tutorials/tut_people.qmd +86 -0
  31. hpvsim-2.3.0/docs/tutorials/tut_plotting.qmd +137 -0
  32. hpvsim-2.3.0/docs/tutorials/tut_running.qmd +173 -0
  33. hpvsim-2.3.0/docs/tutorials.md +13 -0
  34. hpvsim-2.3.0/docs/whats-new.md +5 -0
  35. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/analysis.py +2 -3
  36. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/calibration.py +41 -11
  37. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/defaults.py +1 -0
  38. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/interventions.py +49 -16
  39. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/misc.py +1 -1
  40. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/parameters.py +17 -19
  41. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/people.py +30 -34
  42. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/population.py +13 -2
  43. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/settings.py +1 -1
  44. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/sim.py +6 -2
  45. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/version.py +2 -2
  46. hpvsim-2.3.0/hpvsim.egg-info/PKG-INFO +117 -0
  47. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim.egg-info/SOURCES.txt +37 -35
  48. {hpvsim-2.2.6 → hpvsim-2.3.0}/pyproject.toml +1 -1
  49. hpvsim-2.3.0/tests/README.md +17 -0
  50. hpvsim-2.3.0/tests/baseline.json +61 -0
  51. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/benchmark.json +3 -3
  52. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_dt.py +1 -1
  53. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_multiscale.py +6 -6
  54. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_multiscale_pars.py +2 -3
  55. hpvsim-2.3.0/tests/generate_v2_baselines.py +446 -0
  56. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_analysis.py +92 -1
  57. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_calibration.py +11 -5
  58. hpvsim-2.3.0/tests/test_immunity.py +219 -0
  59. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_interventions.py +155 -0
  60. hpvsim-2.3.0/tests/test_misc.py +172 -0
  61. hpvsim-2.3.0/tests/test_parameters.py +74 -0
  62. hpvsim-2.3.0/tests/test_people.py +31 -0
  63. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_sim.py +40 -4
  64. hpvsim-2.3.0/tests/test_utils.py +367 -0
  65. hpvsim-2.3.0/tests/test_v2_regression.py +230 -0
  66. hpvsim-2.2.6/.readthedocs.yaml +0 -29
  67. hpvsim-2.2.6/CHANGELOG.rst +0 -472
  68. hpvsim-2.2.6/CODE_OF_CONDUCT.rst +0 -57
  69. hpvsim-2.2.6/PKG-INFO +0 -88
  70. hpvsim-2.2.6/README.rst +0 -58
  71. hpvsim-2.2.6/docs/Makefile +0 -31
  72. hpvsim-2.2.6/docs/README.md +0 -20
  73. hpvsim-2.2.6/docs/_static/theme_overrides.css +0 -78
  74. hpvsim-2.2.6/docs/_templates/custom-class-template.rst +0 -27
  75. hpvsim-2.2.6/docs/_templates/custom-function-template.rst +0 -7
  76. hpvsim-2.2.6/docs/_templates/custom-module-template.rst +0 -70
  77. hpvsim-2.2.6/docs/_templates/footer_end.html +0 -1
  78. hpvsim-2.2.6/docs/_templates/footer_start.html +0 -2
  79. hpvsim-2.2.6/docs/_templates/navbar-side.html +0 -12
  80. hpvsim-2.2.6/docs/_templates/page.html +0 -21
  81. hpvsim-2.2.6/docs/api/index.rst +0 -32
  82. hpvsim-2.2.6/docs/build_docs +0 -51
  83. hpvsim-2.2.6/docs/conf.py +0 -140
  84. hpvsim-2.2.6/docs/images/favicon.ico +0 -0
  85. hpvsim-2.2.6/docs/images/idm-logo-transparent.png +0 -0
  86. hpvsim-2.2.6/docs/index.html +0 -12
  87. hpvsim-2.2.6/docs/index.rst +0 -17
  88. hpvsim-2.2.6/docs/overview.rst +0 -6
  89. hpvsim-2.2.6/docs/requirements.txt +0 -15
  90. hpvsim-2.2.6/docs/tutorials/README.rst +0 -5
  91. hpvsim-2.2.6/docs/tutorials/clean_outputs +0 -8
  92. hpvsim-2.2.6/docs/tutorials/example_cancer_cases.csv +0 -17
  93. hpvsim-2.2.6/docs/tutorials/tut_analyzers.ipynb +0 -236
  94. hpvsim-2.2.6/docs/tutorials/tut_calibration.ipynb +0 -153
  95. hpvsim-2.2.6/docs/tutorials/tut_interventions.ipynb +0 -281
  96. hpvsim-2.2.6/docs/tutorials/tut_intro.ipynb +0 -234
  97. hpvsim-2.2.6/docs/tutorials/tut_people.ipynb +0 -144
  98. hpvsim-2.2.6/docs/tutorials/tut_plotting.ipynb +0 -324
  99. hpvsim-2.2.6/docs/tutorials/tut_running.ipynb +0 -316
  100. hpvsim-2.2.6/docs/tutorials.rst +0 -12
  101. hpvsim-2.2.6/docs/variables.txt +0 -23
  102. hpvsim-2.2.6/docs/whats-new.rst +0 -1
  103. hpvsim-2.2.6/hpvsim.egg-info/PKG-INFO +0 -88
  104. hpvsim-2.2.6/tests/README.rst +0 -19
  105. hpvsim-2.2.6/tests/baseline.json +0 -60
  106. {hpvsim-2.2.6 → hpvsim-2.3.0}/.github/workflows/pypi_release.yaml +0 -0
  107. {hpvsim-2.2.6 → hpvsim-2.3.0}/.github/workflows/tests.yaml +0 -0
  108. {hpvsim-2.2.6 → hpvsim-2.3.0}/LICENSE +0 -0
  109. {hpvsim-2.2.6 → hpvsim-2.3.0}/docs/tutorials/nigeria_cancer_cases.csv +0 -0
  110. {hpvsim-2.2.6 → hpvsim-2.3.0}/docs/tutorials/nigeria_cancer_types.csv +0 -0
  111. {hpvsim-2.2.6 → hpvsim-2.3.0}/docs/tutorials/south_africa_age_pyramid.csv +0 -0
  112. {hpvsim-2.2.6 → hpvsim-2.3.0}/examples/t05_screen_algorithms.py +0 -0
  113. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/__init__.py +0 -0
  114. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/base.py +0 -0
  115. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/data/__init__.py +0 -0
  116. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/data/downloaders.py +0 -0
  117. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/data/loaders.py +0 -0
  118. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/data/products_dx.csv +0 -0
  119. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/data/products_tx.csv +0 -0
  120. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/data/products_txvx.csv +0 -0
  121. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/data/products_vx.csv +0 -0
  122. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/data/test_downloaders.py +0 -0
  123. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/data/test_loaders.py +0 -0
  124. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/hiv.py +0 -0
  125. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/immunity.py +0 -0
  126. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/plotting.py +0 -0
  127. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/regression/pars_v0.2.6.json +0 -0
  128. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/regression/pars_v0.2.9.json +0 -0
  129. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/regression/pars_v0.3.0.json +0 -0
  130. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/regression/pars_v0.3.1.json +0 -0
  131. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/run.py +0 -0
  132. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim/utils.py +0 -0
  133. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim.egg-info/dependency_links.txt +0 -0
  134. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim.egg-info/entry_points.txt +0 -0
  135. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim.egg-info/requires.txt +0 -0
  136. {hpvsim-2.2.6 → hpvsim-2.3.0}/hpvsim.egg-info/top_level.txt +0 -0
  137. {hpvsim-2.2.6 → hpvsim-2.3.0}/setup.cfg +0 -0
  138. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/.coveragerc +0 -0
  139. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/benchmark_profile.py +0 -0
  140. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/check_coverage +0 -0
  141. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/check_hiv_data.py +0 -0
  142. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/hpv_test_pars.csv +0 -0
  143. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/multiscale_concept1.py +0 -0
  144. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/multiscale_concept2.py +0 -0
  145. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/multiscale_concept3.py +0 -0
  146. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/multiscale_test.df +0 -0
  147. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/mysql_hpvsim_test.py +0 -0
  148. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/mysql_test.py +0 -0
  149. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/network_dx.py +0 -0
  150. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/plot_nathx.py +0 -0
  151. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/setup_mysql +0 -0
  152. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_cancer_dysp.py +0 -0
  153. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_hiv.py +0 -0
  154. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_latency.py +0 -0
  155. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_logistic.py +0 -0
  156. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_merge_scens.py +0 -0
  157. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_networks.py +0 -0
  158. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_new_progs.py +0 -0
  159. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_parameter_exploration.py +0 -0
  160. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_popgrowth.py +0 -0
  161. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_popscale.py +0 -0
  162. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_sampler.py +0 -0
  163. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/test_txvx.py +0 -0
  164. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/devtests/tut_parameter_exploration.ipynb +0 -0
  165. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/hpvsim_v1.2.2.yml +0 -0
  166. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/pytest.ini +0 -0
  167. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/requirements.txt +0 -0
  168. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/run_tests +0 -0
  169. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/simple.py +0 -0
  170. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_baselines.py +0 -0
  171. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/RSA_data.csv +0 -0
  172. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/art_coverage_south_africa.csv +0 -0
  173. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/australia_age_pyramid.csv +0 -0
  174. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/hiv_incidence_south_africa.csv +0 -0
  175. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/india_cancer_cases.csv +0 -0
  176. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/india_cancer_deaths.csv +0 -0
  177. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/india_cancer_types.csv +0 -0
  178. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/india_cin_types.csv +0 -0
  179. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/india_data.csv +0 -0
  180. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/india_hpv_data.csv +0 -0
  181. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/india_hpv_prevalence.csv +0 -0
  182. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/kenya_age_pyramid.csv +0 -0
  183. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/kenya_cancer_incidence.csv +0 -0
  184. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/kenya_cancer_mortality.csv +0 -0
  185. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/kenya_data.csv +0 -0
  186. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/param_space.csv +0 -0
  187. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/param_space_filled.csv +0 -0
  188. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_age_pyramid.csv +0 -0
  189. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_art_coverage_by_age_females.csv +0 -0
  190. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_art_coverage_by_age_males.csv +0 -0
  191. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_cancer_data_2020.csv +0 -0
  192. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_cancer_data_hiv_2020.csv +0 -0
  193. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_cancer_incidence_by_age_no_hiv.csv +0 -0
  194. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_cancer_incidence_by_age_with_hiv.csv +0 -0
  195. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_female_hiv_mortality.csv +0 -0
  196. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_hpv_data.csv +0 -0
  197. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_male_hiv_mortality.csv +0 -0
  198. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_target_data.csv +0 -0
  199. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_type_distribution_cancer.csv +0 -0
  200. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/south_africa_type_distribution_high_grade_lesion.csv +0 -0
  201. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/tanzania_age_pyramid.csv +0 -0
  202. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/tanzania_data.csv +0 -0
  203. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/test_tx_assigner.csv +0 -0
  204. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/test_via.csv +0 -0
  205. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data/test_via_triage.csv +0 -0
  206. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_data.py +0 -0
  207. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_event_schedule.py +0 -0
  208. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/test_run.py +0 -0
  209. {hpvsim-2.2.6 → hpvsim-2.3.0}/tests/update_baseline +0 -0
@@ -2,6 +2,15 @@
2
2
  *.obj
3
3
  files/
4
4
 
5
+ # Quarto
6
+ _freeze/
7
+ _inv/
8
+ api/
9
+ .jupyter_cache/
10
+
11
+ # Regression baselines (regenerate via tests/generate_v2_baselines.py)
12
+ tests/regression_baselines/
13
+
5
14
  # Other files
6
15
  .idea
7
16
  .vscode
@@ -79,9 +88,11 @@ instance/
79
88
  # Scrapy stuff:
80
89
  .scrapy
81
90
 
82
- # Sphinx documentation
91
+ # Sphinx (legacy) / Quarto documentation
83
92
  docs/_build/
84
93
  docs/api/_autosummary
94
+ docs/_site/
95
+ objects.json
85
96
 
86
97
  # PyBuilder
87
98
  target/
@@ -0,0 +1,490 @@
1
+ All notable changes to the codebase are documented in this file. Changes
2
+ that may result in differences in model output, or are required in order
3
+ to run an old parameter set with the current version, are flagged with
4
+ the term "Regression information".
5
+
6
+ ## Version 2.3.0 (2026-04-20)
7
+
8
+ - Fixes dt-dependent results by scaling partnership formation rates to
9
+ per-timestep probabilities; `layer_probs` and cross-layer defaults
10
+ converted to annual probabilities.
11
+ - *Regression information*: If workflows from v2.2.6 or earlier override default `layer_probs`, `f_cross_layer`, or `m_cross_layer` values
12
+ and have timesteps not equal to 1 year, then the probabilities must be converted to annual probabilities instead of per-timestep probabilities using this formula: `1 - (1 - prob) ** dt`
13
+ - *Regression information:* baseline model outputs change; baselines have been regenerated.
14
+ - Fixes `precins` flow never being incremented; removes redundant `dysplasias` flow (was an alias of `cins`).
15
+ - Adds test coverage for previously untested code paths.
16
+ - Vaccine immunity is now sterilizing (all-or-nothing) rather than leaky (per-contact). `imm_init` sets the probability of sterilizing immunity; non-sterilizing recipients get leaky protection at the `imm_init` level. Default is 0.95.
17
+ - Adds per-timestep transmission logging (`sim._transmission_log`) for downstream analysis of transmission chains.
18
+ - Calibration now supports resuming from an existing database via `keep_db=True`, running only the remaining trials.
19
+ - Calibration workers catch exceptions instead of crashing the entire run.
20
+ - Fixes `res_to_plot` indexing bug in `Calibration.plot()`.
21
+ - *Regression information*: vaccine efficacy will differ from previous versions due to the immunity model change.
22
+
23
+ ## Version 2.2.7 (2026-04-22)
24
+
25
+ - Fix cancer treatment results always being blank: `BaseTreatment.check_eligibility` was excluding cancer patients (preventing radiation from running), `BaseTreatment.apply` was writing to CIN fields for cancer treatment, and `cum_cancer_treated` cumsum used the wrong source array
26
+ - *Github info* PR [94](https://github.com/starsimhub/hpvsim/pull/94), issue [91](https://github.com/starsimhub/hpvsim/issues/91)
27
+
28
+ ## Version 2.2.6 (2026-04-17)
29
+
30
+ - Reconcile different copies of repository
31
+ - *Github info* PR [75](https://github.com/starsimhub/hpvsim/pull/75)
32
+
33
+ ## Version 2.2.5 (2025-10-27)
34
+
35
+ - Small bugfix for campaign vaccination
36
+ - *Github info* PR
37
+ [689](https://github.com/starsimhub/hpvsim_orig/pull/689)
38
+
39
+ ## Version 2.2.4 (2025-08-20)
40
+
41
+ - Fixes a bug in analyzer results for cancer by age and HIV status
42
+ - *Github info* PR
43
+ [687](https://github.com/starsimhub/hpvsim_orig/pull/687)
44
+
45
+ ## Version 2.2.3 (2025-06-27)
46
+
47
+ - Small bugfixes and changes to HIV module parameterization
48
+ - *Github info* PR
49
+ [685](https://github.com/starsimhub/hpvsim_orig/pull/685)
50
+
51
+ ## Version 2.2.2 (2025-06-20)
52
+
53
+ - Bugfix to allow running simulations beyond 2100
54
+ - *Github info* PR
55
+ [681](https://github.com/starsimhub/hpvsim_orig/pull/681)
56
+
57
+ ## Version 2.2.1 (2025-05-29)
58
+
59
+ - Bugfix for running calibrations to prevent interventions being
60
+ reinitialized
61
+ - *Github info* PR
62
+ [678](https://github.com/starsimhub/hpvsim_orig/pull/678)
63
+
64
+ ## Version 2.2.0 (2025-05-23)
65
+
66
+ - Refresh results: ensure all main results are populated, remove cancer
67
+ detection results, and fix bug with HPV prevalence calculations
68
+ - Updates to docs
69
+ - *Github info* PR
70
+ [673](https://github.com/starsimhub/hpvsim_orig/pull/673)
71
+
72
+ ## Version 2.1.0 (2025-03-25)
73
+
74
+ - Updates how HPV prognoses are re-evaluated for WLWH
75
+ - Fixes CD4 reconstitution trajectory so that it plateaus before
76
+ quadratic starts decreasing
77
+ - Fixes ART coverage so that it's now by age, sex, and time
78
+ - Fixes assignment of HIV mortality based upon ART coverage
79
+ - Removes HIV-mortality from background mortality
80
+ - Small fix to enable calibration to HIV-stratified data
81
+ - Adds a more robust data downloading method and renamed `get_data()` to
82
+ `download_data()`; updated data version to 1.4
83
+ - *Github info* PR [652](https://github.com/amath-idm/hpvsim/pull/652)
84
+
85
+ ## Version 2.0.2 (2024-03-05)
86
+
87
+ - Modifies DALY analyzer to output YLLL, YLD and DALYs
88
+ - *Github info* PR [659](https://github.com/amath-idm/hpvsim/pull/659)
89
+
90
+ ## Version 2.0.1 (2024-02-14)
91
+
92
+ - Adds in relative transmissibility attribute to people that can be
93
+ modified by vaccination or treatment
94
+ - *Github info* PR [643](https://github.com/amath-idm/hpvsim/pull/658)
95
+
96
+ ## Version 2.0.0 (2023-11-29)
97
+
98
+ - Simplifies natural history model by compressing CIN grades
99
+ - Changes the way HPV progression is modeled so that there is a
100
+ probability of developing CIN based upon duration of precin and
101
+ probability of cancer based upon duration of cancer (based upon
102
+ Rodriguez et al.
103
+ <https://www.ncbi.nlm.nih.gov/pmc/articles/PMC3705579/>)
104
+ - Adds support for pre-calibration explorations
105
+ - Improvements to networks, including clustering functionality, support
106
+ for different distributions for male and female partners and for
107
+ differing concurrency rates, and changes to default partnership
108
+ durations
109
+ - Exposes a parameter for specifying the sex ratio of a population
110
+ - Fixes plotting issue with tutorial
111
+ - Updates filtering for tests that are not genotype-specific
112
+ - *Github info* PR [643](https://github.com/amath-idm/hpvsim/pull/643)
113
+
114
+ ## Version 1.2.7 (2023-09-22)
115
+
116
+ - Updates `sim.summary` to have more useful information
117
+ - *Github info* PR [618](https://github.com/amath-idm/hpvsim/pull/618)
118
+
119
+ ## Version 1.2.6 (2023-09-22)
120
+
121
+ - Fixes plotting issue with MultiSims and Jupyter notebooks
122
+ - Allows scenarios to be run fully in parallel
123
+ - *Github info* PR [614](https://github.com/amath-idm/hpvsim/pull/614)
124
+
125
+ ## Version 1.2.5 (2023-09-21)
126
+
127
+ - Fixes file path when run via Jupyter
128
+ - *Github info* PR [610](https://github.com/amath-idm/hpvsim/pull/610)
129
+
130
+ ## Version 1.2.4 (2023-09-19)
131
+
132
+ - Fixes Matplotlib regression in plotting
133
+ - *Github info* PR [609](https://github.com/amath-idm/hpvsim/pull/609)
134
+
135
+ ## Version 1.2.3 (2023-08-30)
136
+
137
+ - Updates data loading to be much more efficient
138
+ - *Github info* PR [604](https://github.com/amath-idm/hpvsim/pull/604)
139
+
140
+ ## Version 1.2.2 (2023-08-11)
141
+
142
+ - Improved tests and included `conda` environment specification
143
+ - *Github info* PR [598](https://github.com/amath-idm/hpvsim/pull/598)
144
+
145
+ ## Version 1.2.1 (2023-07-09)
146
+
147
+ - Updated data files being used
148
+ - *Github info* PR [586](https://github.com/amath-idm/hpvsim/pull/586)
149
+
150
+ ## Version 1.2.0 (2023-05-31)
151
+
152
+ - Changes to improve run speed, most notably changes to how migration is
153
+ applied
154
+ - Additional tests to ensure consistency between calibration results,
155
+ age analyzer results, and sim results
156
+ - Updates to natural history to prevent people progressing too quickly
157
+ to cancer
158
+ - *Github info* PR [576](https://github.com/amath-idm/hpvsim/pull/576)
159
+
160
+ ## Version 1.1.5 (2023-03-23)
161
+
162
+ - Adds cross-protection functionality to t-cell immunity and adds
163
+ <span class="title-ref">sev_imm</span> attribute to people
164
+ - *Github info* PR [564](https://github.com/amath-idm/hpvsim/pull/564)
165
+
166
+ ## Version 1.1.4 (2023-03-15)
167
+
168
+ - Fixes bug that caused location data to be loaded twice
169
+ - *Github info* PR [546](https://github.com/amath-idm/hpvsim/pull/546)
170
+
171
+ ## Version 1.1.3 (2023-03-14)
172
+
173
+ - Fixes bug that misses some ways you can specify sex for vaccination
174
+ - *Github info* PR [555](https://github.com/amath-idm/hpvsim/pull/555)
175
+
176
+ ## Version 1.1.2 (2023-03-13)
177
+
178
+ - Fixes bug that never computed cancer deaths by age
179
+ - *Github info* PR [554](https://github.com/amath-idm/hpvsim/pull/554)
180
+
181
+ ## Version 1.1.1 (2023-03-01)
182
+
183
+ - Sets time to and date of HIV death for those not on ART and who fail
184
+ on ART
185
+ - Moves all HIV attributes, parameters, and results into hivsim class
186
+ instance
187
+ - Merges HIV results with sim.results at conclusion of simulation
188
+ - Adds HIV pars as an argument to calibration as well as HIV-specific
189
+ results to age-results analyzer
190
+ - Allows for flexible severity growth functions
191
+ - *Github info* PR [542](https://github.com/amath-idm/hpvsim/pull/542)
192
+
193
+ ## Version 1.1.0 (2023-02-16)
194
+
195
+ - Moves all HIV functionality into hiv.py
196
+ - Establishes new class HIVsim, which is defined by a set of parameters
197
+ and methods for updating a people object
198
+ - Bug fix for setting people.sev wrong on day of infection
199
+ - *Github info* PR [526](https://github.com/amath-idm/hpvsim/pull/526)
200
+
201
+ ## Version 1.0.1 (2023-02-09)
202
+
203
+ - Fixes computation of dur_episomal by adjusting for dt
204
+ - *GitHub info*: PR [527](https://github.com/amath-idm/hpvsim/pull/527)
205
+
206
+ ## Version 1.0.0 (2023-01-31)
207
+
208
+ - Official release!
209
+ - *GitHub info*: PR [521](https://github.com/amath-idm/hpvsim/pull/521)
210
+
211
+ ## Version 0.4.17 (2023-01-31)
212
+
213
+ - Adds a tutorial on calibration
214
+ - Small changes to parameter values
215
+ - *GitHub info*: PR [520](https://github.com/amath-idm/hpvsim/pull/520)
216
+
217
+ ## Version 0.4.16 (2023-01-30)
218
+
219
+ - Change to natural history, including computation of transformation
220
+ based upon time with dysplasia
221
+ - Addition of cellular immunity to moderate progression in a secondary
222
+ infection
223
+ - Default parameter changes and some small typo/bug fixes
224
+ - *GitHub info*: PR [513](https://github.com/amath-idm/hpvsim/pull/513)
225
+
226
+ ## Version 0.4.15 (2023-01-13)
227
+
228
+ - Fixed bug in intervention and analyzer initialization
229
+ - *GitHub info*: PR [511](https://github.com/amath-idm/hpvsim/pull/511)
230
+
231
+ ## Version 0.4.14 (2023-01-11)
232
+
233
+ - Add Sweep class
234
+ - *GitHub info*: PR [431](https://github.com/amath-idm/hpvsim/pull/431)
235
+
236
+ ## Version 0.4.13 (2023-01-09)
237
+
238
+ - Dysplasia percentages are now tracked throughout agent lifetimes, and
239
+ CIN grades are defined as properties based on these percentages
240
+ - Removes all genotypes aside from HPV 16, 18 and a composite 'other
241
+ high risk' genotype from the defaults
242
+ - *GitHub info*: PR [507](https://github.com/amath-idm/hpvsim/pull/507)
243
+
244
+ ## Version 0.4.12 (2023-01-02)
245
+
246
+ - Adds documentation and examples for screening algorithms.
247
+ - *GitHub info*: PR [505](https://github.com/amath-idm/hpvsim/pull/505)
248
+
249
+ ## Version 0.4.11 (2022-12-21)
250
+
251
+ - Adds colposcopy and cytology testing options, along with default
252
+ values for screening sensitivity and specificity.
253
+ - Adds a clearance probability for treatment to control the % of treated
254
+ women who also clear their infection
255
+ - Removes use_multiscale parameter and sets ms_agent_ratio to 1 by
256
+ default
257
+ - *GitHub info*: PR [497](https://github.com/amath-idm/hpvsim/pull/497)
258
+
259
+ ## Version 0.4.10 (2022-12-19)
260
+
261
+ - Change the seed used for running simulations to avoid having random
262
+ processes in the model run sometimes being correlated with population
263
+ attributes
264
+ - Deprecate `Sim.set_seed()` - use `hpu.set_seed()` instead
265
+ - Added `hpvsim.rootdir` to provide a convenient absolute path to the
266
+ - Added equality operator for <span class="title-ref">Result</span>
267
+ objects
268
+ - Exporting simulation results to JSON now includes 2D results (e.g., by
269
+ genotype)
270
+ - `age_pyramid` and `age_results` analyzer argument changed from
271
+ `datafile` to `data` since this input supports both passing in a
272
+ filename or a dataframe
273
+ - *GitHub info*: PR [485](https://github.com/amath-idm/hpvsim/pull/485)
274
+
275
+ ## Version 0.4.9 (2022-12-16)
276
+
277
+ - Added in high- and low-grade lesions to type distribution results
278
+ - Changes default duration and rate of dysplasia for hr HPVs
279
+ - *GitHub info*: PR [479](https://github.com/amath-idm/hpvsim/pull/482)
280
+
281
+ ## Version 0.4.8 (2022-12-14)
282
+
283
+ - Small bug fix to re-enable plots of cytology outcomes by genotype
284
+ - *GitHub info*: PR [484](https://github.com/amath-idm/hpvsim/pull/484)
285
+
286
+ ## Version 0.4.7 (2022-12-13)
287
+
288
+ - Migration is now modeled by finding mismatches between the modeled
289
+ population size by age and data on population sizes by age
290
+ (previously, this adjustment was done for the overall population
291
+ rather than by age bucket).
292
+ - *GitHub info*: PR [479](https://github.com/amath-idm/hpvsim/pull/479)
293
+
294
+ ## Version 0.4.6 (2022-12-12)
295
+
296
+ - Changes to several default parameters: default genotypes are now 16,
297
+ 18, and other high-risk; and default hpv control prob is now 0.
298
+ - Results now capture infections by age and type distributions.
299
+ - Adds age of cancer to analyzer
300
+ - Changes to default plotting styles
301
+ - Various bugfixes: prevents immunity values from exceeding 1, ensures
302
+ people with cancer aren't given second cancers
303
+ - *GitHub info*: PR [458](https://github.com/amath-idm/hpvsim/pull/458)
304
+
305
+ ## Version 0.4.5 (2022-12-06)
306
+
307
+ - Removes default screening products pending review
308
+ - *GitHub info*: PR [464](https://github.com/amath-idm/hpvsim/pull/464)
309
+
310
+ ## Version 0.4.4 (2022-12-05)
311
+
312
+ - Changes to progression to cancer -- no longer based on clinical
313
+ cutoffs, now stochastically applied by genotype to CIN3 agents
314
+ - *GitHub info*: PR [430](https://github.com/amath-idm/hpvsim/pull/430)
315
+
316
+ ## Version 0.4.3 (2022-12-01)
317
+
318
+ - Fixes bug with population growth function
319
+ - *GitHub info*: PR [459](https://github.com/amath-idm/hpvsim/pull/459)
320
+
321
+ ## Version 0.4.2 (2022-11-21)
322
+
323
+ - Changes to parameterization of immunity
324
+ - *GitHub info*: PR [425](https://github.com/amath-idm/hpvsim/pull/425)
325
+
326
+ ## Version 0.4.1 (2022-11-21)
327
+
328
+ - Fixes age of migration
329
+ - Adds scale parameter for vital dynamics
330
+ - *GitHub info*: PR [423](https://github.com/amath-idm/hpvsim/pull/423)
331
+
332
+ ## Version 0.4.0 (2022-11-16)
333
+
334
+ - Adds merge method for scenarios and fixes printing bugs
335
+ - *GitHub info*: PR [422](https://github.com/amath-idm/hpvsim/pull/422)
336
+
337
+ ## Version 0.3.9 (2022-11-15)
338
+
339
+ - Simplifies genotype initialization, adds checks for HIV runs.
340
+ - Since the last release, changes were also made to virological
341
+ clearance rates for people receiving treatment - previously all
342
+ treated people would clear infection, but now some may control
343
+ latently instead.
344
+ - *GitHub info*: PRs [421](https://github.com/amath-idm/hpvsim/pull/421)
345
+ and [420](https://github.com/amath-idm/hpvsim/pull/420)
346
+
347
+ ## Version 0.3.8 (2022-11-02)
348
+
349
+ - Store treatment properties as part of sim.people
350
+ - *GitHub info*: PR [413](https://github.com/amath-idm/hpvsim/pull/413)
351
+
352
+ ## Version 0.3.7 (2022-11-01)
353
+
354
+ - Fix to ensure consistent results for the number of txvx doses
355
+ - *GitHub info*: PR [411](https://github.com/amath-idm/hpvsim/pull/411)
356
+
357
+ ## Version 0.3.6 (2022-11-01)
358
+
359
+ - Fix bug related to screening eligibility. NB, this has a sizeable
360
+ impact on results - screening strategies will be much more effective
361
+ after this fix.
362
+ - *GitHub info*: PR [396](https://github.com/amath-idm/hpvsim/pull/396)
363
+
364
+ ## Version 0.3.5 (2022-10-31)
365
+
366
+ - Store stocks related to interventions
367
+ - *GitHub info*: PR [395](https://github.com/amath-idm/hpvsim/pull/395)
368
+
369
+ ## Version 0.3.4 (2022-10-31)
370
+
371
+ - Bugfixes for therapeutic vaccination
372
+ - *GitHub info*: PR [394](https://github.com/amath-idm/hpvsim/pull/394)
373
+
374
+ ## Version 0.3.3 (2022-10-30)
375
+
376
+ - Changes to therapeautic vaccine efficacy assumptions
377
+ - *GitHub info*: PR [393](https://github.com/amath-idm/hpvsim/pull/393)
378
+
379
+ ## Version 0.3.2 (2022-10-26)
380
+
381
+ - Additional tutorials and minor release tidying
382
+ - *GitHub info*: PR [380](https://github.com/amath-idm/hpvsim/pull/380)
383
+
384
+ ## Version 0.3.1 (2022-10-26)
385
+
386
+ - Fixes bug with screening
387
+ - Increases coverage of baseline test
388
+ - *GitHub info*: PR [373](https://github.com/amath-idm/hpvsim/pull/373)
389
+
390
+ ## Version 0.3.0 (2022-10-26)
391
+
392
+ - Implements multiscale modeling
393
+ - Minor release tidying
394
+ - *GitHub info*: PR [365](https://github.com/amath-idm/hpvsim/pull/365)
395
+
396
+ ## Version 0.2.11 (2022-10-25)
397
+
398
+ - Changes the way dates of HPV clearance are assigned to use durations
399
+ sampled
400
+ - *GitHub info*: PR [374](https://github.com/amath-idm/hpvsim/pull/374)
401
+
402
+ ## Version 0.2.10 (2022-10-24)
403
+
404
+ - Fixes bug with treatment
405
+ - *GitHub info*: PR [354](https://github.com/amath-idm/hpvsim/pull/354)
406
+
407
+ ## Version 0.2.9 (2022-10-18)
408
+
409
+ - Prevents infectious people from being passed to People.infect()
410
+ - Fixes bugs with initialization within scenario runs
411
+ - Remove ununsed prevalence results
412
+ - *GitHub info*: PR [338](https://github.com/amath-idm/hpvsim/pull/345)
413
+
414
+ ## Version 0.2.8 (2022-10-17)
415
+
416
+ - Fixes bug with intervention year interpolation
417
+ - Changes reactivation probabilities to annual, not per time step
418
+ - Refactor prognoses calls
419
+ - *GitHub info*: PR [338](https://github.com/amath-idm/hpvsim/pull/338)
420
+
421
+ ## Version 0.2.7 (2022-10-14)
422
+
423
+ - Adds robust relative paths via `hpv.datadir`
424
+ - *GitHub info*: PR [333](https://github.com/amath-idm/hpvsim/pull/333)
425
+
426
+ ## Version 0.2.6 (2022-10-12)
427
+
428
+ - Removes Numba since slower for small sims and only 10% faster for
429
+ large sims.
430
+ - Moves functions from `utils.py` into `people.py`, `sim.py`, and
431
+ `population.py`.
432
+ - *GitHub info*: PR [326](https://github.com/amath-idm/hpvsim/pull/326)
433
+
434
+ ## Version 0.2.5 (2022-10-07)
435
+
436
+ - Adds people filtering (NB: not used, and later removed).
437
+ - Fixes bug with `print(sim)` not working.
438
+ - Adds baseline tests.
439
+ - *GitHub info*: PR [310](https://github.com/amath-idm/hpvsim/pull/310)
440
+
441
+ ## Version 0.2.4 (2022-10-07)
442
+
443
+ - Changes to dysplasia progression parameterization
444
+ - Adds a new implementation of HPV natural history for HIV positive
445
+ women
446
+ - Note: HIV was added since the previous version
447
+ - *GitHub info*: PR [304](https://github.com/amath-idm/hpvsim/pull/304)
448
+
449
+ ## Version 0.2.3 (2022-09-01)
450
+
451
+ - Adds a `use_migration` parameter that activates immigration/emigration
452
+ to ensure population sizes line up with data.
453
+ - Adds simple data versioning.
454
+ - *GitHub info*: PR [279](https://github.com/amath-idm/hpvsim/pull/279)
455
+
456
+ ## Version 0.2.2 (2022-08-22)
457
+
458
+ - Separates out the `Calibration` class into a separate file and to no
459
+ longer inherit from `Analyzer`. Functionality is unchanged.
460
+ - *GitHub info*: PR [255](https://github.com/amath-idm/hpvsim/pull/255)
461
+
462
+ ## Version 0.2.1 (2022-08-19)
463
+
464
+ - Improves calibration to enable support for MySQL.
465
+ - Fixes plotting bug.
466
+ - *GitHub info*: PR [253](https://github.com/amath-idm/hpvsim/pull/253)
467
+
468
+ ## Version 0.2.0 (2022-08-19)
469
+
470
+ - Fixed tests and data loading logic.
471
+ - *GitHub info*: PR [251](https://github.com/amath-idm/hpvsim/pull/251)
472
+
473
+ ## Version 0.1.0 (2022-08-01)
474
+
475
+ - Updated calibration.
476
+ - *GitHub info*: PR [215](https://github.com/amath-idm/hpvsim/pull/215)
477
+
478
+ ## Version 0.0.3 (2022-07-18)
479
+
480
+ - Updated data loading scripts.
481
+ - *GitHub info*: PR [156](https://github.com/amath-idm/hpvsim/pull/156)
482
+
483
+ ## Version 0.0.2 (2022-06-15)
484
+
485
+ - Made into a Python module.
486
+ - *GitHub info*: PR [64](https://github.com/amath-idm/hpvsim/pull/64)
487
+
488
+ ## Version 0.0.1 (2022-04-04)
489
+
490
+ - Initial version.
@@ -0,0 +1,82 @@
1
+ # Code of conduct
2
+
3
+ ## Our pledge
4
+
5
+ We believe that a diverse, equitable, and inclusive environment is
6
+ essential for producing the best quality software. In the interest of
7
+ fostering an open and welcoming environment, we as contributors and
8
+ maintainers pledge to making participation in HPVsim development and the
9
+ HPVsim community a harassment-free experience for everyone, regardless
10
+ of age, body size, disability, ethnicity, sex characteristics, gender
11
+ identity and expression, level of experience, education, socio-economic
12
+ status, nationality, personal appearance, race, religion, or sexual
13
+ identity and orientation.
14
+
15
+ ## Our standards
16
+
17
+ Examples of behavior that contributes to creating a positive environment
18
+ include:
19
+
20
+ - Using welcoming and inclusive language
21
+ - Being respectful of differing viewpoints and experiences
22
+ - Gracefully accepting constructive criticism
23
+ - Focusing on what is best for the community
24
+ - Showing empathy towards other community members
25
+
26
+ Examples of unacceptable behavior by participants include:
27
+
28
+ - The use of sexualized language or imagery and unwelcome sexual
29
+ attention or advances
30
+ - Trolling, insulting/derogatory comments, and personal or political
31
+ attacks
32
+ - Public or private harassment
33
+ - Publishing others' private information, such as a physical or
34
+ electronic address, without explicit permission
35
+ - Other conduct which could reasonably be considered inappropriate in a
36
+ professional setting
37
+
38
+ ## Our responsibilities
39
+
40
+ HPVsim maintainers are responsible for clarifying the standards of
41
+ acceptable behavior and will take appropriate and fair corrective action
42
+ in response to any instances of unacceptable behavior.
43
+
44
+ HPVsim maintainers have the right and responsibility to remove, edit, or
45
+ reject comments, commits, code, wiki edits, issues, and other
46
+ contributions that are not aligned to this Code of Conduct, or to ban
47
+ temporarily or permanently any contributor for other behaviors that they
48
+ deem inappropriate, threatening, offensive, or harmful.
49
+
50
+ ## Scope
51
+
52
+ This Code of Conduct applies both within project spaces and in public
53
+ spaces when an individual is representing HPVsim or its community.
54
+ Examples of representing the HPVsim project or community include using
55
+ an official project e-mail address, posting via an official social media
56
+ account, or acting as an appointed representative at an online or
57
+ offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may
62
+ be reported by contacting the project team at
63
+ <robyn.stuart@gatesfoundation.org>. All complaints will be reviewed and
64
+ investigated and will result in a response that is deemed necessary and
65
+ appropriate to the circumstances. The HPVsim team is obligated to
66
+ maintain confidentiality with regard to the reporter of an incident.
67
+ Further details of specific enforcement policies may be posted
68
+ separately.
69
+
70
+ HPVsim maintainers who do not follow or enforce the Code of Conduct in
71
+ good faith may face temporary or permanent repercussions as determined
72
+ by other members of HPVsim's leadership.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor
77
+ Covenant](https://www.contributor-covenant.org), version 1.4, available
78
+ at
79
+ <https://www.contributor-covenant.org/version/1/4/code-of-conduct.html>.
80
+
81
+ For answers to common questions about this code of conduct, see the
82
+ [FAQ](https://www.contributor-covenant.org/faq).
@@ -1,6 +1,6 @@
1
1
  include LICENSE
2
2
  global-include requirements*.txt
3
- global-include *.rst
3
+ global-include *.md
4
4
  recursive-include hpvsim *.py
5
5
  recursive-include hpvsim *.csv
6
6
  recursive-include hpvsim *.json