HydPy 5.0.1__tar.gz → 5.0.3__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 (518) hide show
  1. {HydPy-5.0.1 → HydPy-5.0.3}/.travis.yml +10 -10
  2. {HydPy-5.0.1 → HydPy-5.0.3/HydPy.egg-info}/PKG-INFO +18 -5
  3. {HydPy-5.0.1 → HydPy-5.0.3}/HydPy.egg-info/SOURCES.txt +32 -0
  4. {HydPy-5.0.1/HydPy.egg-info → HydPy-5.0.3}/PKG-INFO +18 -5
  5. {HydPy-5.0.1 → HydPy-5.0.3}/README.rst +2 -2
  6. {HydPy-5.0.1 → HydPy-5.0.3}/appveyor.yml +17 -18
  7. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/__init__.py +1 -1
  8. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/anntools.py +0 -1
  9. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/armatools.py +103 -37
  10. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/calibtools.py +6 -6
  11. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/interptools.py +20 -42
  12. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/iuhtools.py +38 -12
  13. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/statstools.py +9 -14
  14. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/xmltools.py +1 -2
  15. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/aliastools.py +1 -1
  16. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/autodoctools.py +15 -19
  17. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/auxfiletools.py +5 -5
  18. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/devicetools.py +9 -14
  19. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/filetools.py +2 -2
  20. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/importtools.py +2 -2
  21. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/indextools.py +1 -1
  22. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/itemtools.py +6 -4
  23. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/masktools.py +0 -1
  24. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/modeltools.py +4 -6
  25. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/netcdftools.py +46 -33
  26. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/objecttools.py +5 -8
  27. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/parametertools.py +15 -23
  28. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/propertytools.py +0 -3
  29. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/selectiontools.py +2 -3
  30. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/sequencetools.py +0 -1
  31. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/seriestools.py +0 -1
  32. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/testtools.py +44 -47
  33. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/timetools.py +25 -21
  34. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/typingtools.py +4 -2
  35. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/variabletools.py +96 -29
  36. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/annutils.pxd +2 -0
  37. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/annutils.pyx +2 -0
  38. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_arma.pyx +2 -0
  39. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_arma_v1.pyx +2 -0
  40. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_conv.pyx +2 -0
  41. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_conv_v001.pyx +2 -0
  42. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_conv_v002.pyx +2 -0
  43. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_conv_v003.pyx +2 -0
  44. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam.pyx +4 -1
  45. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v001.pyx +2 -0
  46. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v002.pyx +2 -0
  47. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v003.pyx +2 -0
  48. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v004.pyx +2 -0
  49. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v005.pyx +2 -0
  50. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v006.pyx +2 -0
  51. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v007.pyx +2 -0
  52. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dam_v008.pyx +6 -2
  53. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dummy.pyx +2 -0
  54. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_dummy_v1.pyx +2 -0
  55. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_evap.pyx +2 -0
  56. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_evap_v001.pyx +2 -0
  57. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_exch.pyx +2 -0
  58. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_exch_v001.pyx +2 -0
  59. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hbranch.pyx +2 -0
  60. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hbranch_v1.pyx +2 -0
  61. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland.pyx +2 -0
  62. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland_v1.pyx +2 -0
  63. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland_v2.pyx +2 -0
  64. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland_v3.pyx +2 -0
  65. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_hland_v4.pyx +2 -0
  66. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_llake.pyx +2 -0
  67. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_llake_v1.pyx +2 -0
  68. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland.pyx +2 -0
  69. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland_v1.pyx +2 -0
  70. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland_v2.pyx +2 -0
  71. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland_v3.pyx +2 -0
  72. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lland_v4.pyx +2 -0
  73. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lstream.pyx +2 -0
  74. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lstream_v001.pyx +2 -0
  75. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_lstream_v002.pyx +2 -0
  76. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo.pyx +2 -0
  77. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo_v001.pyx +2 -0
  78. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo_v002.pyx +2 -0
  79. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo_v003.pyx +2 -0
  80. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_meteo_v004.pyx +2 -0
  81. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_musk.pyx +2 -0
  82. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_musk_classic.pyx +2 -0
  83. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_musk_mct.pyx +2 -0
  84. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_test.pyx +2 -0
  85. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_test_v1.pyx +2 -0
  86. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_test_v2.pyx +2 -0
  87. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_test_v3.pyx +2 -0
  88. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_wland.pyx +2 -0
  89. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_wland_v001.pyx +2 -0
  90. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/c_wland_v002.pyx +2 -0
  91. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/configutils.pxd +2 -0
  92. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/configutils.pyx +2 -0
  93. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/interputils.pxd +2 -0
  94. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/interputils.pyx +3 -1
  95. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/pointerutils.pxd +2 -0
  96. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/pointerutils.pyx +50 -25
  97. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/ppolyutils.pxd +2 -0
  98. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/ppolyutils.pyx +2 -0
  99. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/quadutils.pxd +2 -0
  100. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/quadutils.pyx +2 -0
  101. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/rootutils.pxd +2 -0
  102. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/rootutils.pyx +2 -0
  103. {HydPy-5.0.1/hydpy/cythons → HydPy-5.0.3/hydpy/cythons/autogen}/sequenceutils.pxd +46 -44
  104. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/sequenceutils.pyx +2 -0
  105. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/smoothutils.pxd +2 -0
  106. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/smoothutils.pyx +2 -0
  107. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/configutils.pyi +0 -1
  108. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/interputils.pyi +0 -1
  109. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/interputils.pyx +1 -1
  110. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/modelutils.py +34 -25
  111. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/pointerutils.pyx +48 -25
  112. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/quadutils.pyi +0 -1
  113. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/rootutils.pyi +0 -1
  114. {HydPy-5.0.1/hydpy/cythons/autogen → HydPy-5.0.3/hydpy/cythons}/sequenceutils.pxd +36 -52
  115. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/combine_docversions.py +1 -1
  116. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/draw_model_sketches.py +0 -2
  117. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/prepare.py +10 -2
  118. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-A.rst +1 -0
  119. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-C.rst +1 -0
  120. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Dummy.rst +1 -0
  121. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Evap.rst +1 -0
  122. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Meteo.rst +1 -0
  123. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-T.rst +1 -0
  124. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-W.rst +1 -0
  125. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/index.rst +2 -2
  126. HydPy-5.0.3/hydpy/docs/rst/install.rst +115 -0
  127. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/programming_style.rst +3 -3
  128. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/changes/frameset.html +11 -0
  129. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/changes/rstsource.html +15 -0
  130. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/changes/versionchanges.html +33 -0
  131. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/defindex.html +35 -0
  132. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/domainindex.html +56 -0
  133. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/genindex-single.html +63 -0
  134. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/genindex-split.html +41 -0
  135. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/genindex.html +76 -0
  136. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/globaltoc.html +11 -0
  137. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/layout.html +221 -0
  138. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/localtoc.html +15 -0
  139. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/opensearch.xml +13 -0
  140. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/page.html +13 -0
  141. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/relations.html +23 -0
  142. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/search.html +65 -0
  143. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/searchbox.html +21 -0
  144. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/searchfield.html +23 -0
  145. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/sourcelink.html +18 -0
  146. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/basic.css_t +925 -0
  147. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/doctools.js +156 -0
  148. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/documentation_options.js_t +13 -0
  149. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/file.png +0 -0
  150. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/language_data.js_t +26 -0
  151. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/minus.png +0 -0
  152. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/plus.png +0 -0
  153. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/searchtools.js +574 -0
  154. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/static/sphinx_highlight.js +154 -0
  155. HydPy-5.0.3/hydpy/docs/sphinx/_themes/basic_hydpy/theme.conf +16 -0
  156. HydPy-5.0.3/hydpy/docs/sphinx/_themes/classic_hydpy/layout.html +23 -0
  157. HydPy-5.0.3/hydpy/docs/sphinx/_themes/classic_hydpy/static/classic.css_t +358 -0
  158. HydPy-5.0.3/hydpy/docs/sphinx/_themes/classic_hydpy/static/sidebar.js_t +72 -0
  159. HydPy-5.0.3/hydpy/docs/sphinx/_themes/classic_hydpy/theme.conf +32 -0
  160. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/conf.py +6 -6
  161. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/examples.py +1 -1
  162. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/commandtools.py +5 -20
  163. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/servertools.py +15 -16
  164. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_control.py +1 -1
  165. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_derived.py +2 -2
  166. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_control.py +19 -7
  167. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_derived.py +10 -8
  168. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_model.py +2 -4
  169. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_model.py +1 -1
  170. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_control.py +1 -1
  171. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_derived.py +1 -1
  172. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_masks.py +7 -0
  173. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_control.py +0 -1
  174. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_model.py +5 -5
  175. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_control.py +2 -2
  176. {HydPy-5.0.1 → HydPy-5.0.3}/licenses_hydpy_installer.txt +2 -1
  177. {HydPy-5.0.1 → HydPy-5.0.3}/make_hydpy_installer.cfgt +11 -15
  178. {HydPy-5.0.1 → HydPy-5.0.3}/noxfile.py +2 -1
  179. {HydPy-5.0.1 → HydPy-5.0.3}/prepare_build.py +2 -0
  180. {HydPy-5.0.1 → HydPy-5.0.3}/pylintrc +6 -3
  181. {HydPy-5.0.1 → HydPy-5.0.3}/pyproject.toml +1 -3
  182. {HydPy-5.0.1 → HydPy-5.0.3}/requirements.txt +2 -6
  183. {HydPy-5.0.1 → HydPy-5.0.3}/setup.py +5 -7
  184. HydPy-5.0.1/hydpy/docs/rst/install.rst +0 -122
  185. {HydPy-5.0.1 → HydPy-5.0.3}/.gitignore +0 -0
  186. {HydPy-5.0.1 → HydPy-5.0.3}/LICENSE +0 -0
  187. {HydPy-5.0.1 → HydPy-5.0.3}/call_installer.py +0 -0
  188. {HydPy-5.0.1 → HydPy-5.0.3}/execute_exe.py +0 -0
  189. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/__init__.py +0 -0
  190. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/networktools.py +0 -0
  191. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/ppolytools.py +0 -0
  192. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/quadtools.py +0 -0
  193. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/roottools.py +0 -0
  194. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/smoothtools.py +0 -0
  195. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/auxs/validtools.py +0 -0
  196. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/HydPyConfigBase.xsd +0 -0
  197. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/HydPyConfigBase.xsdt +0 -0
  198. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/HydPyConfigMultipleRuns.xsd +0 -0
  199. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/HydPyConfigSingleRun.xsd +0 -0
  200. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/__init__.py +0 -0
  201. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/a_coefficients_explicit_lobatto_sequence.npy +0 -0
  202. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/conf/support_points_for_smoothpar_logistic2.npy +0 -0
  203. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/config.py +0 -0
  204. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/__init__.py +0 -0
  205. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/exceptiontools.py +0 -0
  206. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/hydpytools.py +0 -0
  207. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/optiontools.py +0 -0
  208. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/printtools.py +0 -0
  209. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/core/pubtools.py +0 -0
  210. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/__init__.py +0 -0
  211. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/annutils.pxd +0 -0
  212. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/annutils.pyi +0 -0
  213. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/annutils.pyx +0 -0
  214. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/autogen/__init__.py +0 -0
  215. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/configutils.pxd +0 -0
  216. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/configutils.pyx +0 -0
  217. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/interputils.pxd +0 -0
  218. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/pointerutils.pxd +0 -0
  219. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/pointerutils.pyi +0 -0
  220. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/ppolyutils.pxd +0 -0
  221. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/ppolyutils.pyi +0 -0
  222. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/ppolyutils.pyx +0 -0
  223. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/quadutils.pxd +0 -0
  224. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/quadutils.pyx +0 -0
  225. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/rootutils.pxd +0 -0
  226. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/rootutils.pyx +0 -0
  227. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/sequenceutils.pyi +0 -0
  228. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/sequenceutils.pyx +0 -0
  229. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/smoothutils.pxd +0 -0
  230. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/smoothutils.pyi +0 -0
  231. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/cythons/smoothutils.pyx +0 -0
  232. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/land_dill.py +0 -0
  233. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/land_lahn_1.py +0 -0
  234. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/land_lahn_2.py +0 -0
  235. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/land_lahn_3.py +0 -0
  236. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/stream_dill_lahn_2.py +0 -0
  237. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/stream_lahn_1_lahn_2.py +0 -0
  238. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/conditions/init_1996_01_01_00_00_00/stream_lahn_2_lahn_3.py +0 -0
  239. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land.py +0 -0
  240. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land_dill.py +0 -0
  241. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land_lahn_1.py +0 -0
  242. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land_lahn_2.py +0 -0
  243. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/land_lahn_3.py +0 -0
  244. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/stream_dill_lahn_2.py +0 -0
  245. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/stream_lahn_1_lahn_2.py +0 -0
  246. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/control/default/stream_lahn_2_lahn_3.py +0 -0
  247. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/multiple_runs.xml +0 -0
  248. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/multiple_runs_alpha.xml +0 -0
  249. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/network/default/headwaters.py +0 -0
  250. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/network/default/nonheadwaters.py +0 -0
  251. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/network/default/streams.py +0 -0
  252. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/hland_v1_input_epn.nc +0 -0
  253. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/hland_v1_input_p.nc +0 -0
  254. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/hland_v1_input_t.nc +0 -0
  255. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/hland_v1_input_tn.nc +0 -0
  256. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_dill_input_epn.asc +0 -0
  257. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_dill_input_p.asc +0 -0
  258. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_dill_input_t.asc +0 -0
  259. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_dill_input_tn.asc +0 -0
  260. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_1_input_epn.asc +0 -0
  261. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_1_input_p.asc +0 -0
  262. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_1_input_t.asc +0 -0
  263. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_1_input_tn.asc +0 -0
  264. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_2_input_epn.asc +0 -0
  265. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_2_input_p.asc +0 -0
  266. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_2_input_t.asc +0 -0
  267. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_2_input_tn.asc +0 -0
  268. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_3_input_epn.asc +0 -0
  269. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_3_input_p.asc +0 -0
  270. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_3_input_t.asc +0 -0
  271. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/series/default/land_lahn_3_input_tn.asc +0 -0
  272. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/single_run.xml +0 -0
  273. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/LahnH/single_run.xmlt +0 -0
  274. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/data/__init__.py +0 -0
  275. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/__init__.py +0 -0
  276. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/autofigs/__init__.py +0 -0
  277. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/bib/__init__.py +0 -0
  278. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/bib/refs.bib +0 -0
  279. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/enable_autodoc.py +0 -0
  280. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-H-Land_Version-1.png +0 -0
  281. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-H-Land_Version-2.png +0 -0
  282. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-H-Land_Version-3.png +0 -0
  283. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-H-Land_Version-4.png +0 -0
  284. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-L-Land_Version-1.png +0 -0
  285. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-L-Stream_Version-1.png +0 -0
  286. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy-W-Land_Version-1.png +0 -0
  287. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy_Logo.png +0 -0
  288. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/HydPy_Logo_Text.png +0 -0
  289. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/LAWA_river-basin-bumbers.png +0 -0
  290. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/LahnH.png +0 -0
  291. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/figs/__init__.py +0 -0
  292. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/html_/__init__.py +0 -0
  293. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/publish_docs.py +0 -0
  294. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-D.rst +0 -0
  295. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Exch.rst +0 -0
  296. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-H.rst +0 -0
  297. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-L.rst +0 -0
  298. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/HydPy-Musk.rst +0 -0
  299. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/__init__.py +0 -0
  300. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/additional_repositories.rst +0 -0
  301. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/auxiliaries.rst +0 -0
  302. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/configuration.rst +0 -0
  303. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/continuous_integration.rst +0 -0
  304. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/core.rst +0 -0
  305. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/cythons.rst +0 -0
  306. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/development.rst +0 -0
  307. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/execution.rst +0 -0
  308. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/framework.rst +0 -0
  309. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/how_to.rst +0 -0
  310. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/hydpydependencies.rst +0 -0
  311. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/modelcollection.rst +0 -0
  312. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/modelimports.rst +0 -0
  313. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/quickstart.rst +0 -0
  314. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/required_tools.rst +0 -0
  315. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/tests_and_documentation.rst +0 -0
  316. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/version_control.rst +0 -0
  317. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/rst/zbibliography.rst +0 -0
  318. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/__init__.py +0 -0
  319. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/apidoc.py +0 -0
  320. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/defaultlinks_extension.py +0 -0
  321. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/docs/sphinx/integrationtest_extension.py +0 -0
  322. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/__init__.py +0 -0
  323. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/hyd.py +0 -0
  324. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/modelimports.py +0 -0
  325. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/exe/replacetools.py +0 -0
  326. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/inputs.py +0 -0
  327. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/__init__.py +0 -0
  328. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/__init__.py +0 -0
  329. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_derived.py +0 -0
  330. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_fluxes.py +0 -0
  331. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_inlets.py +0 -0
  332. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_logs.py +0 -0
  333. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_model.py +0 -0
  334. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma/arma_outlets.py +0 -0
  335. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/arma_v1.py +0 -0
  336. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/__init__.py +0 -0
  337. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_control.py +0 -0
  338. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_fluxes.py +0 -0
  339. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_inlets.py +0 -0
  340. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_model.py +0 -0
  341. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv/conv_outlets.py +0 -0
  342. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv_v001.py +0 -0
  343. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv_v002.py +0 -0
  344. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/conv_v003.py +0 -0
  345. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/__init__.py +0 -0
  346. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_aides.py +0 -0
  347. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_factors.py +0 -0
  348. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_fluxes.py +0 -0
  349. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_inlets.py +0 -0
  350. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_inputs.py +0 -0
  351. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_logs.py +0 -0
  352. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_outlets.py +0 -0
  353. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_receivers.py +0 -0
  354. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_senders.py +0 -0
  355. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_solver.py +0 -0
  356. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam/dam_states.py +0 -0
  357. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v001.py +0 -0
  358. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v002.py +0 -0
  359. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v003.py +0 -0
  360. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v004.py +0 -0
  361. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v005.py +0 -0
  362. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v006.py +0 -0
  363. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v007.py +0 -0
  364. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dam_v008.py +0 -0
  365. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/__init__.py +0 -0
  366. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/dummy_fluxes.py +0 -0
  367. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/dummy_inlets.py +0 -0
  368. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/dummy_model.py +0 -0
  369. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy/dummy_outlets.py +0 -0
  370. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/dummy_v1.py +0 -0
  371. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/__init__.py +0 -0
  372. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_control.py +0 -0
  373. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_derived.py +0 -0
  374. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_factors.py +0 -0
  375. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_fluxes.py +0 -0
  376. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_inputs.py +0 -0
  377. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_logs.py +0 -0
  378. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap/evap_model.py +0 -0
  379. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/evap_v001.py +0 -0
  380. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/__init__.py +0 -0
  381. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_control.py +0 -0
  382. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_factors.py +0 -0
  383. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_fluxes.py +0 -0
  384. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_logs.py +0 -0
  385. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_model.py +0 -0
  386. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_outlets.py +0 -0
  387. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch/exch_receivers.py +0 -0
  388. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/exch_v001.py +0 -0
  389. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/__init__.py +0 -0
  390. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_control.py +0 -0
  391. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_derived.py +0 -0
  392. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_fluxes.py +0 -0
  393. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_inlets.py +0 -0
  394. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch/hbranch_outlets.py +0 -0
  395. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hbranch_v1.py +0 -0
  396. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/__init__.py +0 -0
  397. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_aides.py +0 -0
  398. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_constants.py +0 -0
  399. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_derived.py +0 -0
  400. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_factors.py +0 -0
  401. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_fixed.py +0 -0
  402. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_fluxes.py +0 -0
  403. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_inputs.py +0 -0
  404. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_logs.py +0 -0
  405. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_masks.py +0 -0
  406. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_model.py +0 -0
  407. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_outlets.py +0 -0
  408. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_parameters.py +0 -0
  409. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_sequences.py +0 -0
  410. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland/hland_states.py +0 -0
  411. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland_v1.py +0 -0
  412. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland_v2.py +0 -0
  413. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland_v3.py +0 -0
  414. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/hland_v4.py +0 -0
  415. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/__init__.py +0 -0
  416. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_aides.py +0 -0
  417. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_control.py +0 -0
  418. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_fluxes.py +0 -0
  419. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_inlets.py +0 -0
  420. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_model.py +0 -0
  421. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_outlets.py +0 -0
  422. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake/llake_states.py +0 -0
  423. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/llake_v1.py +0 -0
  424. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/__init__.py +0 -0
  425. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_aides.py +0 -0
  426. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_constants.py +0 -0
  427. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_control.py +0 -0
  428. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_derived.py +0 -0
  429. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_fixed.py +0 -0
  430. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_fluxes.py +0 -0
  431. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_inlets.py +0 -0
  432. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_inputs.py +0 -0
  433. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_logs.py +0 -0
  434. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_model.py +0 -0
  435. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_outlets.py +0 -0
  436. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_parameters.py +0 -0
  437. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_sequences.py +0 -0
  438. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland/lland_states.py +0 -0
  439. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland_v1.py +0 -0
  440. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland_v2.py +0 -0
  441. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland_v3.py +0 -0
  442. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lland_v4.py +0 -0
  443. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/__init__.py +0 -0
  444. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_aides.py +0 -0
  445. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_derived.py +0 -0
  446. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_fixed.py +0 -0
  447. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_fluxes.py +0 -0
  448. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_inlets.py +0 -0
  449. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_outlets.py +0 -0
  450. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_solver.py +0 -0
  451. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream/lstream_states.py +0 -0
  452. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream_v001.py +0 -0
  453. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/lstream_v002.py +0 -0
  454. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/__init__.py +0 -0
  455. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_control.py +0 -0
  456. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_derived.py +0 -0
  457. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_factors.py +0 -0
  458. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_fixed.py +0 -0
  459. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_fluxes.py +0 -0
  460. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_inputs.py +0 -0
  461. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_logs.py +0 -0
  462. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo/meteo_model.py +0 -0
  463. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo_v001.py +0 -0
  464. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo_v002.py +0 -0
  465. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo_v003.py +0 -0
  466. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/meteo_v004.py +0 -0
  467. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/__init__.py +0 -0
  468. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_control.py +0 -0
  469. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_derived.py +0 -0
  470. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_factors.py +0 -0
  471. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_fluxes.py +0 -0
  472. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_inlets.py +0 -0
  473. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_masks.py +0 -0
  474. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_model.py +0 -0
  475. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_outlets.py +0 -0
  476. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_parameters.py +0 -0
  477. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_sequences.py +0 -0
  478. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_solver.py +0 -0
  479. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk/musk_states.py +0 -0
  480. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk_classic.py +0 -0
  481. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/musk_mct.py +0 -0
  482. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/__init__.py +0 -0
  483. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_fluxes.py +0 -0
  484. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_model.py +0 -0
  485. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_solver.py +0 -0
  486. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test/test_states.py +0 -0
  487. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test_v1.py +0 -0
  488. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test_v2.py +0 -0
  489. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/test_v3.py +0 -0
  490. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/__init__.py +0 -0
  491. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_aides.py +0 -0
  492. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_constants.py +0 -0
  493. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_control.py +0 -0
  494. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_derived.py +0 -0
  495. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_fixed.py +0 -0
  496. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_fluxes.py +0 -0
  497. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_inputs.py +0 -0
  498. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_masks.py +0 -0
  499. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_model.py +0 -0
  500. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_outlets.py +0 -0
  501. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_parameters.py +0 -0
  502. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_solver.py +0 -0
  503. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland/wland_states.py +0 -0
  504. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland_v001.py +0 -0
  505. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/models/wland_v002.py +0 -0
  506. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/outputs.py +0 -0
  507. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/py.typed +0 -0
  508. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/.coveragerc +0 -0
  509. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/__init__.py +0 -0
  510. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/check_consistency.py +0 -0
  511. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/hydpydoctestcustomize.pth +0 -0
  512. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/hydpydoctestcustomize.py +0 -0
  513. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/iotesting/__init__.py +0 -0
  514. {HydPy-5.0.1 → HydPy-5.0.3}/hydpy/tests/run_doctests.py +0 -0
  515. {HydPy-5.0.1 → HydPy-5.0.3}/logo.ico +0 -0
  516. {HydPy-5.0.1 → HydPy-5.0.3}/make_and_install_dists.py +0 -0
  517. {HydPy-5.0.1 → HydPy-5.0.3}/prepare_hydpy_installer.py +0 -0
  518. {HydPy-5.0.1 → HydPy-5.0.3}/setup.cfg +0 -0
@@ -2,13 +2,12 @@ language: python
2
2
 
3
3
  os: linux
4
4
 
5
- dist: focal
5
+ dist: jammy
6
6
 
7
7
  matrix:
8
8
  include:
9
9
  - python: 3.8
10
- - python: 3.9
11
- - python: 3.10
10
+ - python: 3.11
12
11
 
13
12
  install:
14
13
  - pip install --upgrade pip virtualenv
@@ -17,12 +16,13 @@ install:
17
16
  script:
18
17
  - python prepare_build.py
19
18
  - python -m build
20
- - if [ $TRAVIS_PYTHON_VERSION == "3.8" ] ; then travis_wait 30 nox -s black -s pylint ; fi
21
- - if [ $TRAVIS_PYTHON_VERSION == "3.9" ] ; then pip install ghp-import; fi
22
- - if [ $TRAVIS_PYTHON_VERSION == "3.9" ] ; then nox -s sphinx -- -W; fi
23
- - if [ $TRAVIS_PYTHON_VERSION == "3.9" ] ; then python hydpy/docs/combine_docversions.py ; fi
24
- - if [ $TRAVIS_PYTHON_VERSION == "3.10" ] ; then nox -s doctest ; fi
25
- - if [ $TRAVIS_PYTHON_VERSION == "3.10" ] ; then nox -s check_consistency ; fi
19
+ - if [ $TRAVIS_PYTHON_VERSION == "3.8" ] ; then nox -s doctest; fi
20
+ - if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then pip install ghp-import; fi
21
+ - if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then nox -s sphinx; fi
22
+ - if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then nox -s black; fi
23
+ - if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then nox -s pylint; fi
24
+ - if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then nox -s check_consistency; fi
25
+ - if [ $TRAVIS_PYTHON_VERSION == "3.11" ] ; then python hydpy/docs/combine_docversions.py ; fi
26
26
 
27
27
  env:
28
28
  global:
@@ -30,4 +30,4 @@ env:
30
30
  - secure: KkDNiyCWcOtSMHzwmR7WuUM9Z08sigox9fgiRaWtdDTNHGHbNRXCf6Rzr32QlThqu9SwwPd5VnEJkontzrG9uTL2rlEzCKJHp4Ncq0lmCBhOJEM7favpIGwjnWQt4kZZ+G/sy9rfV6rshiOMN2rHRkt1gYzRmHTPCEQQ5eVIb7/YnFO+Gc77FGgkqWJXTfYczUMHNL5F3pfdSUbnnsDoqq3dxZ+NtdY6R87+IOT9fclrsL8zcodJC8N2oyGeTfhRcrZESneVcR/NEx6KhVC8A9/8bWK7kc8cYB6ieLo31uU+Ht7UvDzXmXfZrA8FoRbiDaJ3ktW9RQ7BR0GKGyQm/y/bLUrR7Yo2AXLPrF1DvBt8DYvcnMkJ1sNOrJI+oOpfi7AfdxVJnGbWa8w4D5B6EJSCvQwOj1REXgOf8+VrOKUqZMxPCCDDOhKPSx3/9ng7NAT+yRk7pLqKVtJEEszYs2/wK8hask4JMaz9H06b+Dy5nHnr4RQffXPPwAArSZZdu9IC3/38Lqnk+HhUWZLbKnBMd8UdRbDdZ5aFAkK7ZLseiDaAzCE31FscQbNmwpUPgfxgz/ApWZSV/WHlVZvaNBPkK0DTk5b9iW3WeLOC+qXGYzBKTUHIFQbCKEh40P0pTeDlp0sK3bWnT0VPEXJhk0jEN60RrlB9lwLdSzJg4Gs=
31
31
 
32
32
  after_success:
33
- - if [[ $TRAVIS_PYTHON_VERSION == "3.9" ]]; then python publish_docs_copy.py ; fi
33
+ - if [[ $TRAVIS_PYTHON_VERSION == "3.11" ]]; then python publish_docs_copy.py ; fi
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: HydPy
3
- Version: 5.0.1
3
+ Version: 5.0.3
4
4
  Summary: A framework for the development and application of hydrological models.
5
5
  Home-page: https://github.com/hydpy-dev/hydpy
6
6
  Author: HydPy Developers
@@ -13,15 +13,28 @@ Classifier: Intended Audience :: Science/Research
13
13
  Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
14
14
  Classifier: Operating System :: POSIX :: Linux
15
15
  Classifier: Operating System :: Microsoft :: Windows
16
- Classifier: Programming Language :: Python :: 3.7
17
16
  Classifier: Programming Language :: Python :: 3.8
18
17
  Classifier: Programming Language :: Python :: 3.9
19
18
  Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
20
  Classifier: Programming Language :: Python :: Implementation :: CPython
21
21
  Classifier: Topic :: Scientific/Engineering
22
- Requires-Python: >=3.7
22
+ Requires-Python: >=3.8
23
23
  License-File: LICENSE
24
24
  License-File: licenses_hydpy_installer.txt
25
+ Requires-Dist: black
26
+ Requires-Dist: click
27
+ Requires-Dist: matplotlib
28
+ Requires-Dist: netcdf4
29
+ Requires-Dist: networkx
30
+ Requires-Dist: numpy
31
+ Requires-Dist: pandas
32
+ Requires-Dist: plotly
33
+ Requires-Dist: scipy
34
+ Requires-Dist: setuptools
35
+ Requires-Dist: typing_extensions
36
+ Requires-Dist: wrapt
37
+ Requires-Dist: xmlschema
25
38
 
26
39
  .. _`online documentation`: https://hydpy-dev.github.io/hydpy/
27
40
  .. _Python: http://www.python.org/
@@ -67,10 +80,10 @@ License-File: licenses_hydpy_installer.txt
67
80
 
68
81
  \
69
82
 
70
- .. image:: https://img.shields.io/travis/hydpy-dev/hydpy/master?label=Travis%20master
83
+ .. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy/master?label=Travis%20master
71
84
  :alt: Travis master
72
85
  :target: https://app.travis-ci.com/github/hydpy-dev/hydpy/branches
73
- .. image:: https://img.shields.io/travis/hydpy-dev/hydpy?label=latest
86
+ .. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy?label=latest
74
87
  :alt: Travis latest
75
88
  :target: https://app.travis-ci.com/hydpy-dev/hydpy
76
89
 
@@ -276,6 +276,38 @@ hydpy/docs/sphinx/apidoc.py
276
276
  hydpy/docs/sphinx/conf.py
277
277
  hydpy/docs/sphinx/defaultlinks_extension.py
278
278
  hydpy/docs/sphinx/integrationtest_extension.py
279
+ hydpy/docs/sphinx/_themes/basic_hydpy/defindex.html
280
+ hydpy/docs/sphinx/_themes/basic_hydpy/domainindex.html
281
+ hydpy/docs/sphinx/_themes/basic_hydpy/genindex-single.html
282
+ hydpy/docs/sphinx/_themes/basic_hydpy/genindex-split.html
283
+ hydpy/docs/sphinx/_themes/basic_hydpy/genindex.html
284
+ hydpy/docs/sphinx/_themes/basic_hydpy/globaltoc.html
285
+ hydpy/docs/sphinx/_themes/basic_hydpy/layout.html
286
+ hydpy/docs/sphinx/_themes/basic_hydpy/localtoc.html
287
+ hydpy/docs/sphinx/_themes/basic_hydpy/opensearch.xml
288
+ hydpy/docs/sphinx/_themes/basic_hydpy/page.html
289
+ hydpy/docs/sphinx/_themes/basic_hydpy/relations.html
290
+ hydpy/docs/sphinx/_themes/basic_hydpy/search.html
291
+ hydpy/docs/sphinx/_themes/basic_hydpy/searchbox.html
292
+ hydpy/docs/sphinx/_themes/basic_hydpy/searchfield.html
293
+ hydpy/docs/sphinx/_themes/basic_hydpy/sourcelink.html
294
+ hydpy/docs/sphinx/_themes/basic_hydpy/theme.conf
295
+ hydpy/docs/sphinx/_themes/basic_hydpy/changes/frameset.html
296
+ hydpy/docs/sphinx/_themes/basic_hydpy/changes/rstsource.html
297
+ hydpy/docs/sphinx/_themes/basic_hydpy/changes/versionchanges.html
298
+ hydpy/docs/sphinx/_themes/basic_hydpy/static/basic.css_t
299
+ hydpy/docs/sphinx/_themes/basic_hydpy/static/doctools.js
300
+ hydpy/docs/sphinx/_themes/basic_hydpy/static/documentation_options.js_t
301
+ hydpy/docs/sphinx/_themes/basic_hydpy/static/file.png
302
+ hydpy/docs/sphinx/_themes/basic_hydpy/static/language_data.js_t
303
+ hydpy/docs/sphinx/_themes/basic_hydpy/static/minus.png
304
+ hydpy/docs/sphinx/_themes/basic_hydpy/static/plus.png
305
+ hydpy/docs/sphinx/_themes/basic_hydpy/static/searchtools.js
306
+ hydpy/docs/sphinx/_themes/basic_hydpy/static/sphinx_highlight.js
307
+ hydpy/docs/sphinx/_themes/classic_hydpy/layout.html
308
+ hydpy/docs/sphinx/_themes/classic_hydpy/theme.conf
309
+ hydpy/docs/sphinx/_themes/classic_hydpy/static/classic.css_t
310
+ hydpy/docs/sphinx/_themes/classic_hydpy/static/sidebar.js_t
279
311
  hydpy/exe/__init__.py
280
312
  hydpy/exe/commandtools.py
281
313
  hydpy/exe/hyd.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: HydPy
3
- Version: 5.0.1
3
+ Version: 5.0.3
4
4
  Summary: A framework for the development and application of hydrological models.
5
5
  Home-page: https://github.com/hydpy-dev/hydpy
6
6
  Author: HydPy Developers
@@ -13,15 +13,28 @@ Classifier: Intended Audience :: Science/Research
13
13
  Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
14
14
  Classifier: Operating System :: POSIX :: Linux
15
15
  Classifier: Operating System :: Microsoft :: Windows
16
- Classifier: Programming Language :: Python :: 3.7
17
16
  Classifier: Programming Language :: Python :: 3.8
18
17
  Classifier: Programming Language :: Python :: 3.9
19
18
  Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
20
  Classifier: Programming Language :: Python :: Implementation :: CPython
21
21
  Classifier: Topic :: Scientific/Engineering
22
- Requires-Python: >=3.7
22
+ Requires-Python: >=3.8
23
23
  License-File: LICENSE
24
24
  License-File: licenses_hydpy_installer.txt
25
+ Requires-Dist: black
26
+ Requires-Dist: click
27
+ Requires-Dist: matplotlib
28
+ Requires-Dist: netcdf4
29
+ Requires-Dist: networkx
30
+ Requires-Dist: numpy
31
+ Requires-Dist: pandas
32
+ Requires-Dist: plotly
33
+ Requires-Dist: scipy
34
+ Requires-Dist: setuptools
35
+ Requires-Dist: typing_extensions
36
+ Requires-Dist: wrapt
37
+ Requires-Dist: xmlschema
25
38
 
26
39
  .. _`online documentation`: https://hydpy-dev.github.io/hydpy/
27
40
  .. _Python: http://www.python.org/
@@ -67,10 +80,10 @@ License-File: licenses_hydpy_installer.txt
67
80
 
68
81
  \
69
82
 
70
- .. image:: https://img.shields.io/travis/hydpy-dev/hydpy/master?label=Travis%20master
83
+ .. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy/master?label=Travis%20master
71
84
  :alt: Travis master
72
85
  :target: https://app.travis-ci.com/github/hydpy-dev/hydpy/branches
73
- .. image:: https://img.shields.io/travis/hydpy-dev/hydpy?label=latest
86
+ .. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy?label=latest
74
87
  :alt: Travis latest
75
88
  :target: https://app.travis-ci.com/hydpy-dev/hydpy
76
89
 
@@ -42,10 +42,10 @@
42
42
 
43
43
  \
44
44
 
45
- .. image:: https://img.shields.io/travis/hydpy-dev/hydpy/master?label=Travis%20master
45
+ .. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy/master?label=Travis%20master
46
46
  :alt: Travis master
47
47
  :target: https://app.travis-ci.com/github/hydpy-dev/hydpy/branches
48
- .. image:: https://img.shields.io/travis/hydpy-dev/hydpy?label=latest
48
+ .. image:: https://img.shields.io/travis/com/hydpy-dev/hydpy?label=latest
49
49
  :alt: Travis latest
50
50
  :target: https://app.travis-ci.com/hydpy-dev/hydpy
51
51
 
@@ -1,34 +1,32 @@
1
1
 
2
- version: 5.0.1.{build}
2
+ version: 5.0.3.{build}
3
3
 
4
4
  image: Visual Studio 2019
5
5
 
6
6
  environment:
7
- PYPIPA:
8
- secure: OYHmXK1t/zHOfA97P+RmCVDWG1ef8lyMQaNK/jmVAXk=
7
+ TokenPyPI:
8
+ secure: kkjz662y19aSdDHa+tqlBLsUfJ6VUSNlU4zKumcZYBwCV2RS3CTK9FtxQKGm/OveW0PCY4i80ctDmWH0mCr5TstHTyr0JRs2p61X0skiqRFYj6l0PoR8n2GaMKntWPwILRKUvueYCzDLTIDGGHa2GNWHTAznrYs+nNSu+95zsLmroY1RY4NnhTPrL9RgiPNPT2EbMVmb7dLYAaMgEHqXveU3yRcpNsguuESChBSJOQROQE77JktPpykzSLJGP23c
9
9
  matrix:
10
- - PYTHON: "C:\\Python37-x64"
10
+ - PYTHON: "C:\\Python38-x64"
11
11
  make_exe: false
12
12
  python_mode: false
13
13
  cython_mode: true
14
- - PYTHON: "C:\\Python38-x64"
14
+ - PYTHON: "C:\\Python39-x64"
15
15
  make_exe: false
16
16
  python_mode: true
17
17
  cython_mode: false
18
- - PYTHON: "C:\\Python39-x64"
19
- make_exe: true
20
- python_mode: false
21
- cython_mode: false
22
18
  - PYTHON: "C:\\Python310-x64"
23
19
  make_exe: false
24
20
  python_mode: false
25
21
  cython_mode: true
22
+ - PYTHON: "C:\\Python311-x64"
23
+ make_exe: true
24
+ python_mode: false
25
+ cython_mode: false
26
26
 
27
27
  install:
28
- # - cinst nsis
29
- - ps: (new-object net.webclient).DownloadFile('https://downloads.sourceforge.net/project/nsis/NSIS%203/3.05/nsis-3.05-setup.exe', 'nsis-3.05-setup.exe')
30
- - ps: nsis-3.05-setup.exe /S
31
- - SET PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
28
+ - cinst nsis
29
+ - set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
32
30
  - python -m pip install --upgrade pip
33
31
  - python -m pip install -r requirements.txt
34
32
  - if %make_exe%==true python -m pip install pynsist
@@ -47,13 +45,14 @@ before_test:
47
45
  test_script:
48
46
  - if %make_exe%==false nox -s doctest -- --python-mode=%python_mode% --cython-mode=%cython_mode%
49
47
  - if %make_exe%==true rename hydpy _hydpy
50
- - if %make_exe%==true SET PATH=C:\Users\appveyor\AppData\Local\Programs\HydPy\bin;%PATH%
51
- - if %make_exe%==true nox -s installer
48
+ - if %make_exe%==true python call_installer.py
49
+ - if %make_exe%==true set PATH=C:/Users\appveyor\AppData\Local\Programs\HydPy\bin;%PATH%
50
+ - if %make_exe%==true C:/Users\appveyor\AppData\Local\Programs\HydPy\bin\hyd.py.exe run_doctests
52
51
 
53
52
  after_test:
54
53
  - "echo [pypi] > %USERPROFILE%\\.pypirc"
55
- - "echo username: tyralla >> %USERPROFILE%\\.pypirc"
56
- - "echo password: %PYPIPA% >> %USERPROFILE%\\.pypirc"
54
+ - "echo username: __token__ >> %USERPROFILE%\\.pypirc"
55
+ - "echo password: %TokenPyPI% >> %USERPROFILE%\\.pypirc"
57
56
  - ps: if ($env:APPVEYOR_REPO_TAG -eq "true") { Invoke-Expression "twine upload --skip-existing dist/*"} else { write-output "No tag, no deploy"}
58
57
 
59
58
  artifacts:
@@ -68,7 +67,7 @@ deploy:
68
67
  description: 'This is a draft.'
69
68
  provider: GitHub
70
69
  auth_token:
71
- secure: n6oPRXEu1EFeFsmJYY2qnyuEOsb6OuSXQ5kf6CacHvcFcKb6JWXqPYZBzk16ZCBn
70
+ secure: jj6p/HAFU0awcS+uR2555necfI0pwGewxp8CSm78s/Cg6/nzRNe1fsZKRRiE1lU+
72
71
  artifact: Packages,Installer,XSDs
73
72
  draft: true
74
73
  prerelease: false
@@ -198,7 +198,7 @@ from hydpy.exe.servertools import (
198
198
  )
199
199
 
200
200
 
201
- __version__ = "5.0.1"
201
+ __version__ = "5.0.3"
202
202
 
203
203
  pub.options = optiontools.Options()
204
204
  pub.indexer = indextools.Indexer()
@@ -29,7 +29,6 @@ else:
29
29
  class _ANNArrayProperty(
30
30
  propertytools.DependentProperty[propertytools.TypeInput, propertytools.TypeOutput]
31
31
  ):
32
-
33
32
  _obj2cann: Dict[Any, annutils.ANN] # pylint: disable=used-before-assignment
34
33
  _obj2cann = weakref.WeakKeyDictionary()
35
34
 
@@ -14,6 +14,7 @@ import numpy
14
14
  import hydpy
15
15
  from hydpy.core import exceptiontools
16
16
  from hydpy.core import objecttools
17
+ from hydpy.core import propertytools
17
18
  from hydpy.auxs import statstools
18
19
  from hydpy.core.typingtools import *
19
20
 
@@ -328,7 +329,7 @@ check the calculated coefficients: 1.0.
328
329
  class ARMA:
329
330
  """Autoregressive-Moving Average model.
330
331
 
331
- One can sett all ARMA coefficients manually:
332
+ One can set all ARMA coefficients manually:
332
333
 
333
334
  >>> from hydpy import MA, ARMA
334
335
  >>> arma = ARMA(ar_coefs=(0.5,), ma_coefs=(0.3, 0.2))
@@ -434,11 +435,11 @@ class ARMA:
434
435
 
435
436
  >>> arma.max_rel_rmse = 1e-2
436
437
  >>> arma.max_dev_coefs = 1e-2
437
- >>> arma.update_coefs()
438
- Traceback (most recent call last):
439
- ...
438
+ >>> from hydpy.core.testtools import warn_later
439
+ >>> with warn_later():
440
+ ... arma.update_coefs()
440
441
  UserWarning: Note that the smallest response to a standard impulse of the \
441
- determined ARMA model is negative (`-0.000316`).
442
+ determined ARMA model is negative (`-0.000336`).
442
443
  >>> arma
443
444
  ARMA(ar_coefs=(0.736954, -0.166457),
444
445
  ma_coefs=(0.01946, 0.05418, 0.077804, 0.098741, 0.091295,
@@ -498,13 +499,13 @@ of `0.0` has been reached using `10` coefficients.
498
499
  >>> arma.update_coefs()
499
500
  Traceback (most recent call last):
500
501
  ...
501
- UserWarning: Not able to detect a turning point in the impulse response defined by \
502
- the MA coefficients `1.0, 1.0, 1.0`.
502
+ UserWarning: Not able to detect a turning point in the impulse response defined \
503
+ by the MA coefficients `1.0, 1.0, 1.0`.
503
504
 
504
505
  When getting such warnings, you need to inspect the achieved coefficients manually.
505
506
  In the last case, when the turning point detection failed, method
506
- |ARMA.update_coefs| simplified the ARMA to the original MA model, which is a safe
507
- but not always a good choice:
507
+ |ARMA.update_coefs| simplified the ARMA to the original MA model, which is safe but
508
+ not always a good choice:
508
509
 
509
510
  >>> import warnings
510
511
  >>> with warnings.catch_warnings():
@@ -512,7 +513,7 @@ the MA coefficients `1.0, 1.0, 1.0`.
512
513
  ... arma.update_coefs()
513
514
  >>> arma
514
515
  ARMA(ar_coefs=(),
515
- ma_coefs=(1.0, 1.0, 1.0))
516
+ ma_coefs=(0.333333, 0.333333, 0.333333))
516
517
  """
517
518
 
518
519
  max_ar_order: int = 10
@@ -541,39 +542,104 @@ the MA coefficients `1.0, 1.0, 1.0`.
541
542
  @property
542
543
  def rel_rmse(self) -> float:
543
544
  """Relative root mean squared error the last time achieved by method
544
- |ARMA.update_coefs|."""
545
- return self._rel_rmse
545
+ |ARMA.update_coefs|.
546
+
547
+ >>> from hydpy.auxs.armatools import ARMA
548
+ >>> ARMA().rel_rmse
549
+ Traceback (most recent call last):
550
+ ...
551
+ RuntimeError: The relative root mean squared error has not been determined so \
552
+ far.
553
+ """
554
+ if (rel_rmse := self._rel_rmse) is None:
555
+ raise RuntimeError(
556
+ "The relative root mean squared error has not been determined so far."
557
+ )
558
+ return rel_rmse
559
+
560
+ def _get_ar_coefs(self) -> Vector[float]:
561
+ """The AR coefficients of the ARMA model.
562
+
563
+ |property| |ARMA.ar_coefs| does not recalculate already defined coefficients
564
+ automatically for efficiency:
565
+
566
+ >>> from hydpy import MA, ARMA, print_values
567
+ >>> arma = ARMA(ar_coefs=(0.5,), ma_coefs=(0.3, 0.2))
568
+ >>> from scipy import stats
569
+ >>> arma.ma = MA(iuh=lambda x: 1.02328 * stats.norm.pdf(x, 4.0, 2.0))
570
+ >>> arma.ma.iuh.moment1 = 3.94
571
+ >>> print_values(arma.ar_coefs)
572
+ 0.5
573
+
574
+ You can trigger the recalculation by removing the available coefficients first:
575
+
576
+ >>> del arma.ar_coefs
577
+ >>> print_values(arma.ar_coefs)
578
+ 0.680483, -0.228511, 0.047283, -0.006022, 0.000377
579
+ >>> arma
580
+ ARMA(ar_coefs=(0.680483, -0.228511, 0.047283, -0.006022, 0.000377),
581
+ ma_coefs=(0.019322, 0.054783, 0.08195, 0.107757, 0.104458,
582
+ 0.07637, 0.041095, 0.01581, 0.004132, 0.000663,
583
+ 0.00005))
584
+ """
585
+ if (ar_coefs := self._ar_coefs) is not None:
586
+ return ar_coefs
587
+ self.update_coefs()
588
+ assert (ar_coefs := self._ar_coefs) is not None
589
+ return ar_coefs
546
590
 
547
- @property
548
- def ar_coefs(self) -> Vector[float]:
549
- """The AR coefficients of the AR model."""
550
- if self._ar_coefs is None:
551
- self.update_ar_coefs()
552
- return self._ar_coefs
553
-
554
- @ar_coefs.setter
555
- def ar_coefs(self, values) -> None:
591
+ def _set_ar_coefs(self, values) -> None:
556
592
  self._ar_coefs = numpy.array(values, ndmin=1, dtype=float)
557
593
 
558
- @ar_coefs.deleter
559
- def ar_coefs(self) -> None:
594
+ def _del_ar_coefs(self) -> None:
560
595
  self._ar_coefs = None
561
596
 
562
- @property
563
- def ma_coefs(self) -> Vector[float]:
564
- """The MA coefficients of the ARMA model."""
565
- if self._ma_coefs is None:
566
- self.update_ma_coefs()
567
- return self._ma_coefs
568
-
569
- @ma_coefs.setter
570
- def ma_coefs(self, values) -> None:
597
+ ar_coefs = propertytools.Property(
598
+ fget=_get_ar_coefs, fset=_set_ar_coefs, fdel=_del_ar_coefs
599
+ )
600
+
601
+ def _get_ma_coefs(self) -> Vector[float]:
602
+ """The MA coefficients of the ARMA model.
603
+
604
+ |property| |ARMA.ma_coefs| does not recalculate already defined coefficients
605
+ automatically for efficiency:
606
+
607
+ >>> from hydpy import MA, ARMA, print_values
608
+ >>> arma = ARMA(ar_coefs=(0.5,), ma_coefs=(0.3, 0.2))
609
+ >>> from scipy import stats
610
+ >>> arma.ma = MA(iuh=lambda x: 1.02328 * stats.norm.pdf(x, 4.0, 2.0))
611
+ >>> arma.ma.iuh.moment1 = 3.94
612
+ >>> print_values(arma.ma_coefs)
613
+ 0.3, 0.2
614
+
615
+ You can trigger the recalculation by removing the available coefficients first:
616
+
617
+ >>> del arma.ma_coefs
618
+ >>> print_values(arma.ma_coefs)
619
+ 0.019322, 0.054783, 0.08195, 0.107757, 0.104458, 0.07637, 0.041095,
620
+ 0.01581, 0.004132, 0.000663, 0.00005
621
+ >>> arma
622
+ ARMA(ar_coefs=(0.680483, -0.228511, 0.047283, -0.006022, 0.000377),
623
+ ma_coefs=(0.019322, 0.054783, 0.08195, 0.107757, 0.104458,
624
+ 0.07637, 0.041095, 0.01581, 0.004132, 0.000663,
625
+ 0.00005))
626
+ """
627
+ if (ma_coefs := self._ma_coefs) is not None:
628
+ return ma_coefs
629
+ self.update_coefs()
630
+ assert (ma_coefs := self._ma_coefs) is not None
631
+ return ma_coefs
632
+
633
+ def _set_ma_coefs(self, values) -> None:
571
634
  self._ma_coefs = numpy.array(values, ndmin=1, dtype=float)
572
635
 
573
- @ma_coefs.deleter
574
- def ma_coefs(self) -> None:
636
+ def _del_ma_coefs(self) -> None:
575
637
  self._ma_coefs = None
576
638
 
639
+ ma_coefs = propertytools.Property(
640
+ fget=_get_ma_coefs, fset=_set_ma_coefs, fdel=_del_ma_coefs
641
+ )
642
+
577
643
  @property
578
644
  def coefs(self) -> Tuple[Vector[float], Vector[float]]:
579
645
  """Tuple containing both the AR and the MA coefficients."""
@@ -598,6 +664,7 @@ the MA coefficients `1.0, 1.0, 1.0`.
598
664
  """Determine both the AR and the MA coefficients."""
599
665
  self.update_ar_coefs()
600
666
  self.update_ma_coefs()
667
+ self.norm_coefs()
601
668
 
602
669
  @property
603
670
  def effective_max_ar_order(self) -> int:
@@ -630,7 +697,7 @@ the MA coefficients `1.0, 1.0, 1.0`.
630
697
  if self._rel_rmse < self.max_rel_rmse:
631
698
  break
632
699
  else:
633
- with hydpy.pub.options.reprdigits(12): # pylint: disable=not-callable
700
+ with hydpy.pub.options.reprdigits(12):
634
701
  warnings.warn(
635
702
  f"Method `update_ar_coefs` is not able to determine "
636
703
  f"the AR coefficients of the ARMA model with the desired "
@@ -719,10 +786,9 @@ the MA coefficients `1.0, 1.0, 1.0`.
719
786
  for ma_order in range(1, self.ma.order + 1):
720
787
  self.calc_next_ma_coef(ma_order, self.ma)
721
788
  if self.dev_coefs < self.max_dev_coefs:
722
- self.norm_coefs()
723
789
  break
724
790
  else:
725
- with hydpy.pub.options.reprdigits(12): # pylint: disable=not-callable
791
+ with hydpy.pub.options.reprdigits(12):
726
792
  warnings.warn(
727
793
  f"Method `update_ma_coefs` is not able to determine the "
728
794
  f"MA coefficients of the ARMA model with the desired "
@@ -15,8 +15,6 @@ import types
15
15
  import warnings
16
16
  from typing import *
17
17
  from typing import TextIO
18
- from typing_extensions import Literal # type: ignore[misc]
19
- from typing_extensions import Protocol # type: ignore[misc]
20
18
 
21
19
  # ...from site-packages
22
20
  import black
@@ -34,9 +32,11 @@ from hydpy.core import selectiontools
34
32
  from hydpy.core import timetools
35
33
  from hydpy.core import variabletools
36
34
  from hydpy.auxs import iuhtools
37
- from hydpy.models.arma import arma_control
38
35
  from hydpy.core.typingtools import *
39
36
 
37
+ if TYPE_CHECKING:
38
+ from hydpy.models.arma import arma_control
39
+
40
40
  TypeParameter = TypeVar("TypeParameter", bound=parametertools.Parameter)
41
41
  TypeRule1 = TypeVar(
42
42
  "TypeRule1",
@@ -807,10 +807,10 @@ class Replace(Rule[parametertools.Parameter]):
807
807
  See the documentation on class |Rule| for further information.
808
808
  """
809
809
  opt = hydpy.pub.options
810
- with opt.parameterstep(self.parameterstep): # pylint: disable=not-callable
810
+ with opt.parameterstep(self.parameterstep):
811
811
  for parameter in self:
812
812
  if self.adaptor:
813
- self.adaptor(parameter) # pylint: disable=not-callable
813
+ self.adaptor(parameter)
814
814
  else:
815
815
  self._update_parameter(parameter, self.value)
816
816
 
@@ -2197,7 +2197,7 @@ parameterstep="1d"))
2197
2197
  return cast(List[str], super().__dir__()) + list(self._rules.keys())
2198
2198
 
2199
2199
 
2200
- class RuleIUH(Rule[arma_control.Responses]):
2200
+ class RuleIUH(Rule["arma_control.Responses"]):
2201
2201
  """A |Rule|, class specialised for |IUH| parameters.
2202
2202
 
2203
2203
  |RuleIUH| serves as a base class only. Please see the concrete implementation
@@ -99,10 +99,10 @@ class InterpAlgorithm(abc.ABC, _Labeled):
99
99
  """Process the given input data and print the interpolated output values as
100
100
  well as all partial first-order derivatives.
101
101
 
102
- The documentation on class |PPoly| includes some examples for a strictly
103
- univariate interpolator. Here, we take up some of the examples discussed for
104
- class |ANN| to show that method |InterpAlgorithm.print_table| also correctly
105
- reports all outputs and derivatives for multivariate interpolators.
102
+ The documentation on class |PPoly| includes some examples of a strictly
103
+ univariate interpolator. Here, we take up some examples discussed for class
104
+ |ANN| to show that method |InterpAlgorithm.print_table| also correctly reports
105
+ all outputs and derivatives for multivariate interpolators.
106
106
 
107
107
  A single-input single-output example:
108
108
 
@@ -235,7 +235,7 @@ class BaseInterpolator(_Labeled):
235
235
  SPAN = (None, None)
236
236
 
237
237
  name: str
238
- """Class name in lower case letters."""
238
+ """Class name in lowercase letters."""
239
239
  subvars: parametertools.SubParameters
240
240
  """The |SubParameters| object containing the current |BaseInterpolator| object."""
241
241
  subpars: parametertools.SubParameters
@@ -508,46 +508,24 @@ class SeasonalInterpolator(BaseInterpolator):
508
508
  >>> seasonalinterpolator.shape
509
509
  (366, 3)
510
510
 
511
- The following interactive plot shows the |SeasonalInterpolator.ratios| used for
512
- weighting (note that the missing values for October, November, and December are not
513
- relevant for the initialisation period):
511
+ The following plot shows the |SeasonalInterpolator.ratios| used for weighting (note
512
+ that the missing values for October, November, and December are irrelevant for the
513
+ initialisation period):
514
514
 
515
515
  .. testsetup::
516
516
 
517
- >>> from bokeh import plotting, models, palettes
518
- >>> from hydpy import docs
517
+ >>> from matplotlib import pyplot
518
+ >>> from hydpy.docs import autofigs
519
519
  >>> import os
520
- >>> plotting.output_file(os.path.join(
521
- ... docs.__path__[0], "html_", "anntools.SeasonalInterpolator.ratios.html"))
522
- >>> hover = models.HoverTool(tooltips=[("(x,y)", "($x, $y)")])
523
- >>> plot = plotting.figure(toolbar_location="above",
524
- ... plot_width=500, plot_height=300)
525
- >>> plot.tools.append(hover)
526
- >>> legend_entries = []
527
- >>> for idx, (toy, color) in enumerate(
528
- ... zip(seasonalinterpolator.toys, palettes.Dark2_5)):
529
- ... line = plot.line(range(366), seasonalinterpolator.ratios[:, idx],
530
- ... alpha=0.8, muted_alpha=0.2, color=color)
531
- ... line.muted = True
532
- ... legend_entries.append((str(toy), [line]))
533
- >>> legend = models.Legend(items=legend_entries,
534
- ... location=(10, 0),
535
- ... click_policy="mute")
536
- >>> plot.add_layout(legend, "right")
537
- >>> label_dict = {0: "Jan 1", 60: "Mar 1", 182: "Jul 1"}
538
- >>> plot.xaxis.ticker = sorted(label_dict.keys())
539
- >>> plot.xaxis.formatter = models.FuncTickFormatter(
540
- ... code=f"var labels = {label_dict}; return labels[tick];")
541
- >>> dummy = plotting.save(plot)
542
-
543
- .. raw:: html
544
-
545
- <iframe
546
- src="anntools.SeasonalInterpolator.ratios.html"
547
- width="100%"
548
- height="300px"
549
- frameborder=0
550
- ></iframe>
520
+ >>> for idx, toy in enumerate(seasonalinterpolator.toys):
521
+ ... _ = pyplot.plot(seasonalinterpolator.ratios[:, idx], label=str(toy))
522
+ >>> _ = pyplot.legend()
523
+ >>> _ = pyplot.xticks(ticks=[0, 60, 182], labels=["Jan 1", "Mar 1", "Jul 1"])
524
+ >>> filename = "SeasonalInterpolator_ratios.png"
525
+ >>> pyplot.savefig(os.path.join(autofigs.__path__[0], filename))
526
+ >>> pyplot.clf()
527
+
528
+ ... image:: SeasonalInterpolator_ratios.png
551
529
 
552
530
  For example, on July 1 (which is the 183rd day of a leap year), only the output of
553
531
  the third interpolator is relevant:
@@ -764,7 +742,7 @@ error occurred: Value `1` of type `int` has been given, but an object of type \
764
742
  )
765
743
  if algorithm:
766
744
  algorithms["_1"] = algorithm[0]
767
- for (toystr, value) in algorithms.items():
745
+ for toystr, value in algorithms.items():
768
746
  if not isinstance(value, InterpAlgorithm):
769
747
  raise TypeError(
770
748
  f"Type `{type(value).__name__}` is not (a subclass of) type "