res2df 1.3.3__tar.gz → 1.3.6__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 (259) hide show
  1. {res2df-1.3.3 → res2df-1.3.6}/.github/workflows/codecov.yml +0 -3
  2. res2df-1.3.6/.github/workflows/publish.yml +37 -0
  3. {res2df-1.3.3 → res2df-1.3.6}/.github/workflows/res2df.yml +5 -17
  4. {res2df-1.3.3 → res2df-1.3.6}/.github/workflows/style.yml +0 -2
  5. {res2df-1.3.3 → res2df-1.3.6}/.github/workflows/typing.yml +1 -4
  6. {res2df-1.3.3 → res2df-1.3.6}/.gitignore +1 -1
  7. res2df-1.3.6/PKG-INFO +766 -0
  8. {res2df-1.3.3 → res2df-1.3.6}/README.md +2 -1
  9. {res2df-1.3.3 → res2df-1.3.6}/ci/testkomodo.sh +1 -1
  10. res2df-1.3.6/pyproject.toml +153 -0
  11. res2df-1.3.6/setup.cfg +4 -0
  12. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/gruptree.py +1 -1
  13. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/rft.py +1 -1
  14. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/version.py +2 -2
  15. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/vfp/_vfpinj.py +1 -1
  16. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/vfp/_vfpprod.py +4 -4
  17. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/wellconnstatus.py +1 -1
  18. res2df-1.3.6/src/res2df.egg-info/PKG-INFO +766 -0
  19. {res2df-1.3.3 → res2df-1.3.6/src}/res2df.egg-info/SOURCES.txt +90 -95
  20. {res2df-1.3.3 → res2df-1.3.6/src}/res2df.egg-info/requires.txt +1 -1
  21. {res2df-1.3.3 → res2df-1.3.6}/tests/conftest.py +1 -0
  22. {res2df-1.3.3 → res2df-1.3.6}/tests/test_common.py +1 -0
  23. {res2df-1.3.3 → res2df-1.3.6}/tests/test_compdat.py +1 -0
  24. {res2df-1.3.3 → res2df-1.3.6}/tests/test_eclfiles.py +1 -0
  25. {res2df-1.3.3 → res2df-1.3.6}/tests/test_equil.py +1 -0
  26. {res2df-1.3.3 → res2df-1.3.6}/tests/test_ert_hooks.py +1 -0
  27. {res2df-1.3.3 → res2df-1.3.6}/tests/test_faults.py +1 -0
  28. {res2df-1.3.3 → res2df-1.3.6}/tests/test_fipreports.py +1 -0
  29. {res2df-1.3.3 → res2df-1.3.6}/tests/test_grid.py +1 -0
  30. {res2df-1.3.3 → res2df-1.3.6}/tests/test_gruptree.py +1 -0
  31. {res2df-1.3.3 → res2df-1.3.6}/tests/test_hook_implementations.py +2 -1
  32. {res2df-1.3.3 → res2df-1.3.6}/tests/test_inferdims.py +1 -0
  33. {res2df-1.3.3 → res2df-1.3.6}/tests/test_integration.py +1 -0
  34. {res2df-1.3.3 → res2df-1.3.6}/tests/test_logging.py +1 -0
  35. {res2df-1.3.3 → res2df-1.3.6}/tests/test_nnc.py +1 -0
  36. {res2df-1.3.3 → res2df-1.3.6}/tests/test_parameters.py +1 -0
  37. {res2df-1.3.3 → res2df-1.3.6}/tests/test_pillars.py +1 -0
  38. {res2df-1.3.3 → res2df-1.3.6}/tests/test_pvt.py +1 -0
  39. {res2df-1.3.3 → res2df-1.3.6}/tests/test_rft.py +1 -0
  40. {res2df-1.3.3 → res2df-1.3.6}/tests/test_satfunc.py +1 -0
  41. {res2df-1.3.3 → res2df-1.3.6}/tests/test_summary.py +2 -1
  42. {res2df-1.3.3 → res2df-1.3.6}/tests/test_summary_restarts.py +1 -0
  43. {res2df-1.3.3 → res2df-1.3.6}/tests/test_trans.py +1 -0
  44. {res2df-1.3.3 → res2df-1.3.6}/tests/test_userapi.py +1 -0
  45. {res2df-1.3.3 → res2df-1.3.6}/tests/test_vfp.py +1 -0
  46. {res2df-1.3.3 → res2df-1.3.6}/tests/test_wcon.py +1 -0
  47. {res2df-1.3.3 → res2df-1.3.6}/tests/test_wellcompletiondata.py +1 -0
  48. {res2df-1.3.3 → res2df-1.3.6}/tests/test_wellconnstatus.py +1 -0
  49. {res2df-1.3.3 → res2df-1.3.6}/tests/test_welopen.py +1 -0
  50. {res2df-1.3.3 → res2df-1.3.6}/tests/test_wlist.py +1 -0
  51. {res2df-1.3.3 → res2df-1.3.6}/tests/test_zonemap.py +1 -0
  52. res2df-1.3.3/PKG-INFO +0 -90
  53. res2df-1.3.3/mypy.ini +0 -32
  54. res2df-1.3.3/py.typed +0 -0
  55. res2df-1.3.3/res2df.egg-info/PKG-INFO +0 -90
  56. res2df-1.3.3/ruff.toml +0 -37
  57. res2df-1.3.3/setup.cfg +0 -19
  58. res2df-1.3.3/setup.py +0 -88
  59. res2df-1.3.3/test_requirements.txt +0 -5
  60. res2df-1.3.3/types_requirements.txt +0 -4
  61. {res2df-1.3.3 → res2df-1.3.6}/.pre-commit-config.yaml +0 -0
  62. {res2df-1.3.3 → res2df-1.3.6}/CONTRIBUTING.md +0 -0
  63. {res2df-1.3.3 → res2df-1.3.6}/LICENSE +0 -0
  64. {res2df-1.3.3 → res2df-1.3.6}/SECURITY.md +0 -0
  65. {res2df-1.3.3 → res2df-1.3.6}/docs/_static/equinor-logo.png +0 -0
  66. {res2df-1.3.3 → res2df-1.3.6}/docs/_static/equinor-logo2.jpg +0 -0
  67. {res2df-1.3.3 → res2df-1.3.6}/docs/_static/equinor_logo.jpg +0 -0
  68. {res2df-1.3.3 → res2df-1.3.6}/docs/_static/equinor_logo_only.jpg +0 -0
  69. {res2df-1.3.3 → res2df-1.3.6}/docs/_templates/layout.html +0 -0
  70. {res2df-1.3.3 → res2df-1.3.6}/docs/conf.py +0 -0
  71. {res2df-1.3.3 → res2df-1.3.6}/docs/contribution.rst +0 -0
  72. {res2df-1.3.3 → res2df-1.3.6}/docs/csv2res.rst +0 -0
  73. {res2df-1.3.3 → res2df-1.3.6}/docs/glossary.rst +0 -0
  74. {res2df-1.3.3 → res2df-1.3.6}/docs/history.rst +0 -0
  75. {res2df-1.3.3 → res2df-1.3.6}/docs/index.rst +0 -0
  76. {res2df-1.3.3 → res2df-1.3.6}/docs/installation.rst +0 -0
  77. {res2df-1.3.3 → res2df-1.3.6}/docs/introduction.rst +0 -0
  78. {res2df-1.3.3 → res2df-1.3.6}/docs/res2csv.rst +0 -0
  79. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/compdat.csv +0 -0
  80. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/compdat.rst +0 -0
  81. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/equil-example.csv +0 -0
  82. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/equil.rst +0 -0
  83. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/fipnum.inc +0 -0
  84. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/fipreports-example.csv +0 -0
  85. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/fipreports-example.txt +0 -0
  86. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/fipreports.rst +0 -0
  87. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/grid.csv +0 -0
  88. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/grid.rst +0 -0
  89. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/gruptree.csv +0 -0
  90. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/gruptree.rst +0 -0
  91. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/gruptreenet.csv +0 -0
  92. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/images/injectoranalysis.png +0 -0
  93. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/images/multibranch-rftanalysis.png +0 -0
  94. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/nnc.csv +0 -0
  95. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/nnc.rst +0 -0
  96. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/outflow.csv +0 -0
  97. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/pillars-dyn1-stacked.csv +0 -0
  98. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/pillars-dyn1-unstacked.csv +0 -0
  99. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/pillars-example1.csv +0 -0
  100. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/pillars.rst +0 -0
  101. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/pvt.csv +0 -0
  102. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/pvt.rst +0 -0
  103. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/rft.rst +0 -0
  104. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/rft_columns.csv +0 -0
  105. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/satfunc.csv +0 -0
  106. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/satfunc.rst +0 -0
  107. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/summary.csv +0 -0
  108. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/summary.rst +0 -0
  109. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/trans-boundaries.csv +0 -0
  110. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/trans-group.csv +0 -0
  111. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/trans.rst +0 -0
  112. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/trans1.csv +0 -0
  113. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/wcon.csv +0 -0
  114. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/wcon.rst +0 -0
  115. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/well_connection_status.csv +0 -0
  116. {res2df-1.3.3 → res2df-1.3.6}/docs/usage/wellconnstatus.rst +0 -0
  117. {res2df-1.3.3 → res2df-1.3.6}/docs/usage.rst +0 -0
  118. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/__init__.py +0 -0
  119. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/__version__.py +0 -0
  120. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/common.py +0 -0
  121. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/compdat.py +0 -0
  122. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/constants.py +0 -0
  123. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/csv2res.py +0 -0
  124. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/equil.py +0 -0
  125. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/faults.py +0 -0
  126. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/fipreports.py +0 -0
  127. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/grid.py +0 -0
  128. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/hook_implementations/__init__.py +0 -0
  129. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/hook_implementations/forward_model_steps.py +0 -0
  130. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/inferdims.py +0 -0
  131. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/nnc.py +0 -0
  132. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/BRANPROP +0 -0
  133. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/COMPDAT +0 -0
  134. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/COMPLUMP +0 -0
  135. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/COMPSEGS +0 -0
  136. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/DENSITY +0 -0
  137. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/EQLDIMS +0 -0
  138. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/EQUIL +0 -0
  139. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/FAULTS +0 -0
  140. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/GRUPNET +0 -0
  141. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/GRUPTREE +0 -0
  142. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/NODEPROP +0 -0
  143. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/PBVD +0 -0
  144. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/PDVD +0 -0
  145. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/PVDG +0 -0
  146. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/PVDO +0 -0
  147. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/PVTG +0 -0
  148. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/PVTO +0 -0
  149. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/PVTW +0 -0
  150. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/ROCK +0 -0
  151. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/RSVD +0 -0
  152. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/RVVD +0 -0
  153. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/SGFN +0 -0
  154. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/SGOF +0 -0
  155. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/SGWFN +0 -0
  156. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/SLGOF +0 -0
  157. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/SOF2 +0 -0
  158. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/SOF3 +0 -0
  159. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/SWFN +0 -0
  160. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/SWOF +0 -0
  161. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/TABDIMS +0 -0
  162. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/VFPINJ +0 -0
  163. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/VFPPROD +0 -0
  164. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WCONHIST +0 -0
  165. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WCONINJE +0 -0
  166. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WCONINJH +0 -0
  167. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WCONPROD +0 -0
  168. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WELOPEN +0 -0
  169. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WELSEGS +0 -0
  170. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WELSPECS +0 -0
  171. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WLIST +0 -0
  172. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WSEGAICD +0 -0
  173. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WSEGSICD +0 -0
  174. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/WSEGVALV +0 -0
  175. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/readme +0 -0
  176. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/opmkeywords/runmetoupdate.sh +0 -0
  177. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/parameters.py +0 -0
  178. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/pillars.py +0 -0
  179. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/pvt.py +0 -0
  180. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/res2csv.py +0 -0
  181. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/res2csvlogger.py +0 -0
  182. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/resdatafiles.py +0 -0
  183. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/satfunc.py +0 -0
  184. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/summary.py +0 -0
  185. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/svg_color_keyword_names.txt +0 -0
  186. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/trans.py +0 -0
  187. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/vfp/__init__.py +0 -0
  188. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/vfp/_vfp.py +0 -0
  189. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/vfp/_vfpcommon.py +0 -0
  190. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/vfp/_vfpdefs.py +0 -0
  191. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/wcon.py +0 -0
  192. {res2df-1.3.3 → res2df-1.3.6/src}/res2df/wellcompletiondata.py +0 -0
  193. {res2df-1.3.3 → res2df-1.3.6/src}/res2df.egg-info/dependency_links.txt +0 -0
  194. {res2df-1.3.3 → res2df-1.3.6/src}/res2df.egg-info/entry_points.txt +0 -0
  195. {res2df-1.3.3 → res2df-1.3.6/src}/res2df.egg-info/not-zip-safe +0 -0
  196. {res2df-1.3.3 → res2df-1.3.6/src}/res2df.egg-info/top_level.txt +0 -0
  197. {res2df-1.3.3 → res2df-1.3.6}/tests/__init__.py +0 -0
  198. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.DATA +0 -0
  199. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.EGRID +0 -0
  200. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.INIT +0 -0
  201. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.INSPEC +0 -0
  202. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.PRT +0 -0
  203. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.RFT +0 -0
  204. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.RSSPEC +0 -0
  205. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.SMSPEC +0 -0
  206. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.UNRST +0 -0
  207. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/EIGHTCELLS.UNSMRY +0 -0
  208. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/eightcells_duplicated_summary_vector/EIGHTCELLS_DUPES.DATA +0 -0
  209. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/eightcells_duplicated_summary_vector/EIGHTCELLS_DUPES.SMSPEC +0 -0
  210. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/eightcells_duplicated_summary_vector/EIGHTCELLS_DUPES.UNSMRY +0 -0
  211. {res2df-1.3.3 → res2df-1.3.6}/tests/data/eightcells/zones.lyr +0 -0
  212. {res2df-1.3.3 → res2df-1.3.6}/tests/data/fipreports/TEST1.PRT +0 -0
  213. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/grid/reek.faults +0 -0
  214. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/grid/reek.grid +0 -0
  215. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/grid/reek.multflt +0 -0
  216. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/grid/reek.multz +0 -0
  217. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/grid/reek.perm +0 -0
  218. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/grid/reek.poro +0 -0
  219. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/props/let-sgof.txt +0 -0
  220. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/props/let-swof.txt +0 -0
  221. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/props/reek.endpoints +0 -0
  222. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/props/reek.pvt +0 -0
  223. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/props/reek.swatinit +0 -0
  224. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/props/sgof.txt +0 -0
  225. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/props/swof.inc +0 -0
  226. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/props/swof.txt +0 -0
  227. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/regions/reek.eqlnum +0 -0
  228. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/regions/reek.fipnum +0 -0
  229. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/schedule/op6_aicd1_gp.sch +0 -0
  230. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/schedule/op6_icd1_gp.sch +0 -0
  231. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/schedule/op6_valve1_gp.sch +0 -0
  232. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/schedule/reek_history.sch +0 -0
  233. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/solution/reek.equil +0 -0
  234. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/include/summary/reek.smry +0 -0
  235. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0-OPMFLOW.PRT +0 -0
  236. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.DATA +0 -0
  237. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.ECLEND +0 -0
  238. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.EGRID +0 -0
  239. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.INIT +0 -0
  240. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.LOG +0 -0
  241. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.PRT +0 -0
  242. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.RFT +0 -0
  243. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.SMSPEC +0 -0
  244. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.UNRST +0 -0
  245. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/2_R001_REEK-0.UNSMRY +0 -0
  246. {res2df-1.3.3 → res2df-1.3.6}/tests/data/reek/eclipse/model/zones.lyr +0 -0
  247. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP.DATA +0 -0
  248. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP.SMSPEC +0 -0
  249. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP.UNSMRY +0 -0
  250. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP_LONG.DATA +0 -0
  251. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP_LONG.SMSPEC +0 -0
  252. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP_LONG.UNSMRY +0 -0
  253. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP_WITH_TIMESTEP.DATA +0 -0
  254. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP_WITH_TIMESTEP.SMSPEC +0 -0
  255. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP_WITH_TIMESTEP.UNSMRY +0 -0
  256. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP_WITH_TIMESTEP_LONG.DATA +0 -0
  257. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP_WITH_TIMESTEP_LONG.SMSPEC +0 -0
  258. {res2df-1.3.3 → res2df-1.3.6}/tests/data/timesteps/SHORT_STEP_WITH_TIMESTEP_LONG.UNSMRY +0 -0
  259. {res2df-1.3.3 → res2df-1.3.6}/tests/test_init.py +0 -0
@@ -29,9 +29,6 @@ jobs:
29
29
  with:
30
30
  python-version: 3.11
31
31
  cache: "pip"
32
- cache-dependency-path: |
33
- setup.py
34
- test_requirements.txt
35
32
 
36
33
  - name: Install res2df
37
34
  run: |
@@ -0,0 +1,37 @@
1
+ name: Publish to PyPI
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ pypi-publish:
9
+ name: Upload release to PyPI
10
+ runs-on: ubuntu-latest
11
+ environment:
12
+ name: pypi
13
+ url: https://pypi.org/p/res2df
14
+ permissions:
15
+ id-token: write
16
+
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
+
23
+ - name: Set up Python 3.11
24
+ uses: actions/setup-python@v5
25
+ with:
26
+ python-version: '3.11'
27
+
28
+ - name: Install build dependencies
29
+ run: |
30
+ pip install -U pip
31
+ pip install build
32
+
33
+ - name: Build distributions
34
+ run: python -m build
35
+
36
+ - name: Publish package distributions to PyPI
37
+ uses: pypa/gh-action-pypi-publish@release/v1
@@ -7,9 +7,10 @@ on:
7
7
  pull_request:
8
8
  branches:
9
9
  - master
10
- release:
11
- types:
12
- - published
10
+
11
+ schedule:
12
+ # Run CI every night and check that tests are working with latest dependencies
13
+ - cron: '0 0 * * *'
13
14
 
14
15
  env:
15
16
  ERT_SHOW_BACKTRACE: 1
@@ -47,9 +48,6 @@ jobs:
47
48
  with:
48
49
  python-version: ${{ matrix.python-version }}
49
50
  cache: "pip"
50
- cache-dependency-path: |
51
- setup.py
52
- test_requirements.txt
53
51
 
54
52
  - name: Install res2df with dependencies
55
53
  run: |
@@ -75,7 +73,7 @@ jobs:
75
73
 
76
74
  - name: Build documentation
77
75
  run: |
78
- python setup.py build_sphinx
76
+ sphinx-build -W -b html docs build/sphinx/html
79
77
 
80
78
  - name: Update GitHub pages
81
79
  if: github.repository_owner == 'equinor' && github.ref == 'refs/heads/master' && matrix.python-version == '3.11'
@@ -99,13 +97,3 @@ jobs:
99
97
  git commit -m "Update Github Pages"
100
98
  git push "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git" gh-pages
101
99
  fi
102
-
103
- - name: Build python package and publish to pypi
104
- if: github.event_name == 'release' && matrix.python-version == '3.11'
105
- env:
106
- TWINE_USERNAME: __token__
107
- TWINE_PASSWORD: ${{ secrets.res2df_pypi_token }}
108
- run: |
109
- python -m pip install --upgrade setuptools wheel twine
110
- python setup.py sdist bdist_wheel
111
- twine upload dist/*
@@ -29,8 +29,6 @@ jobs:
29
29
  with:
30
30
  python-version: ${{ matrix.python-version }}
31
31
  cache: "pip"
32
- cache-dependency-path: |
33
- setup.py
34
32
 
35
33
  - name: Install res2df with style dependencies
36
34
  run: |
@@ -29,9 +29,6 @@ jobs:
29
29
  with:
30
30
  python-version: ${{ matrix.python-version }}
31
31
  cache: "pip"
32
- cache-dependency-path: |
33
- setup.py
34
- types_requirements.txt
35
32
 
36
33
  - name: Install res2df with types dependencies
37
34
  run: |
@@ -39,4 +36,4 @@ jobs:
39
36
 
40
37
  - name: Run mypy
41
38
  run: |
42
- mypy res2df
39
+ mypy src
@@ -8,7 +8,7 @@ res2df.egg-info
8
8
  *~
9
9
  docs/modules.rst
10
10
  docs/res2df.rst
11
- res2df/version.py
11
+ src/res2df/version.py
12
12
  \#*
13
13
  .\#*
14
14
  venv*