orchid-python-api 5.25.1__py3-none-any.whl → 5.25.3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ReleaseNotes.md CHANGED
@@ -13,6 +13,52 @@ the [Python grip utility](https://pypi.org/project/grip/). This application allo
13
13
  files before sending off to GitHub". Although you need not send any of these file to `GitHub`, by using `grip`
14
14
  to render the file, you can much more easily navigate the document links.
15
15
 
16
+ ### Release notes for 5.25.3
17
+
18
+ This release is the production release of the Orchid Python API corresponding to Orchid 5.25.3. We have made the necessary
19
+ updates to the Python API to remain compatible with the .NET API.
20
+
21
+ #### Possible breaking .NET API changes
22
+
23
+ - None
24
+
25
+ #### Resolved Issues
26
+
27
+ - None
28
+
29
+ #### Features
30
+
31
+ - None
32
+
33
+ #### Known Issues
34
+
35
+ - None
36
+
37
+
38
+ ### Release notes for 5.25.2
39
+
40
+ This release is the production release of the Orchid Python API corresponding to Orchid 5.25.2. We have made the necessary
41
+ updates to the Python API to remain compatible with the .NET API.
42
+
43
+ A minor change has been made where we've split the dependencies between the example files and the sdk dependencies for a smaller footprint when installing the API. There are probably
44
+ many ways to do this, but when installing the new package, if you want to install the example dependencies you can run `pip install .[examples]` or if using poetry `poetry install -E examples`
45
+
46
+ #### Possible breaking .NET API changes
47
+
48
+ - None
49
+
50
+ #### Resolved Issues
51
+
52
+ - None
53
+
54
+ #### Features
55
+
56
+ - None
57
+
58
+ #### Known Issues
59
+
60
+ - None
61
+
16
62
  ### Release notes for 5.25.1
17
63
 
18
64
  This release is the production release of the Orchid Python API corresponding to Orchid 5.25.1. We have made the necessary
orchid/VERSION CHANGED
@@ -1 +1 @@
1
- 5.25.1
1
+ 5.25.3
@@ -135,9 +135,9 @@ def calculate_volume_2_first_response():
135
135
  derive_1_time = first_derivative_threshold(p_stg, 0.2)
136
136
  derive_2_time = second_derivative_peak(p_stg)
137
137
  if derive_1_time is not None:
138
- derive_1_time = dt.datetime.utcfromtimestamp(derive_1_time.tolist() * 1e-9).replace(tzinfo=orchid.UTC)
138
+ derive_1_time = derive_1_time.astype(dt.datetime).replace(tzinfo=dt.timezone.utc)
139
139
  if derive_2_time is not None:
140
- derive_2_time = dt.datetime.utcfromtimestamp(derive_2_time.tolist() * 1e-9).replace(tzinfo=orchid.UTC)
140
+ derive_2_time = derive_2_time.astype(dt.datetime).replace(tzinfo=dt.timezone.utc)
141
141
  vfr_d1, _, _ = (compute_stage_treatment_aggregates(stage, derive_1_time) if derive_1_time is not None
142
142
  else (None, None, None))
143
143
  vfr_d2, _, _ = (compute_stage_treatment_aggregates(stage, derive_2_time) if derive_2_time is not None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: orchid-python-api
3
- Version: 5.25.1
3
+ Version: 5.25.3
4
4
  Summary: Defines and implements the Python API for Orchid*. (*Orchid is a mark of KAPPA.)
5
5
  Home-page: https://github.com/Reveal-Energy-Services/orchid-python-api
6
6
  License: Apache-2.0
@@ -24,22 +24,24 @@ Classifier: Programming Language :: Python :: Implementation :: CPython
24
24
  Classifier: Topic :: Scientific/Engineering
25
25
  Classifier: Topic :: Software Development :: Libraries
26
26
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
27
- Requires-Dist: deal (>=4.23.4,<5.0.0)
28
- Requires-Dist: ipython (>=8.7.0,<9.0.0)
29
- Requires-Dist: matplotlib (>=3.6.2,<4.0.0)
30
- Requires-Dist: numpy (>=1.23.5,<2.0.0)
27
+ Provides-Extra: examples
28
+ Requires-Dist: clr (==1.0.3)
29
+ Requires-Dist: deal (>=4.24.4,<5.0.0)
30
+ Requires-Dist: ipython (>=8.0,<9.0) ; extra == "examples"
31
+ Requires-Dist: jupyterlab-vim ; extra == "examples"
32
+ Requires-Dist: matplotlib (>=3.7,<4.0) ; extra == "examples"
33
+ Requires-Dist: numpy (>=1.26.4,<2.0.0)
31
34
  Requires-Dist: option (>=2.1.0,<3.0.0)
32
35
  Requires-Dist: packaging (>=24.1,<25.0)
33
36
  Requires-Dist: pandas (>=2.2.2,<3.0.0)
34
37
  Requires-Dist: pendulum (>=3.0.0,<4.0.0)
35
38
  Requires-Dist: pint (>=0.20.1,<0.21.0)
36
- Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
37
- Requires-Dist: pythonnet (==3.0.3)
38
- Requires-Dist: pyyaml (>=6.0,<7.0)
39
- Requires-Dist: scipy (>=1.9.3,<2.0.0)
40
- Requires-Dist: seaborn (>=0.12.1,<0.13.0)
41
- Requires-Dist: toolz (>=0.12.0,<0.13.0)
42
- Requires-Dist: typing-extensions (>=4.4.0,<5.0.0)
39
+ Requires-Dist: python-dateutil (>=2.9.0,<3.0.0)
40
+ Requires-Dist: pythonnet (>=3.0.3,<4.0.0)
41
+ Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
42
+ Requires-Dist: scipy (>=1.10,<2.0) ; extra == "examples"
43
+ Requires-Dist: seaborn (>=0.12,<0.13) ; extra == "examples"
44
+ Requires-Dist: toolz (>=0.12.1,<0.13.0)
43
45
  Project-URL: Documentation, https://github.com/Reveal-Energy-Services/orchid-python-api/wiki
44
46
  Project-URL: Issues, https://github.com/Reveal-Energy-Services/orchid-python-api/issues
45
47
  Project-URL: Repository, https://github.com/Reveal-Energy-Services/orchid-python-api
@@ -45,7 +45,7 @@ orchid/searchable_stages.py,sha256=5fF0fBbyKlv8RUjTOi9n6rE59URsFkn8BLFd2i3qTDc,1
45
45
  orchid/unit_system.py,sha256=FlrLWHUhi6A39hyYOsqz6aCLUqBSVvIq844QWMB14_Y,6514
46
46
  orchid/utils.py,sha256=85wXZVZEKekdbsHWn4mjF13GJqAT1Onan6vUpM5LwD4,493
47
47
  orchid/validation.py,sha256=SRt2agZqYKPqI50TzEe9oOcRZ60uqzw7qxnE-9KClyE,1769
48
- orchid/VERSION,sha256=KnO5_Vtem1nTO372LFOHPD3sUpEdV2yOOGm6lGXcJkI,6
48
+ orchid/VERSION,sha256=Df0Qw8F6Cjef9zpLkp-mgddjgGFMUimCcg_JwrFVVqo,6
49
49
  orchid/version.py,sha256=CdbCgC7UaMpWJjgPMN0fevhX1kL6nmuRgVY0eTovYoo,1372
50
50
  orchid_python_api/__init__.py,sha256=KB5yRju9yypLtsdPGjRQtrn5AOMVzJZ5VLyGH7kJESY,787
51
51
  orchid_python_api/examples/add_stages.py,sha256=SPUkcNwnsXfIfP1SoKOrkpYdZ-IWbkssQZjGziK9asM,6452
@@ -76,13 +76,13 @@ orchid_python_api/examples/search_data_frames.ipynb,sha256=4vOR5L2cdxYSQKWFMbLkA
76
76
  orchid_python_api/examples/search_data_frames.py,sha256=a_ufT648MAhN-kz-mTIXyOm56DX6b4fLG4r3Ib5mmVU,5928
77
77
  orchid_python_api/examples/stage_qc_results.py,sha256=w-H7rNVtO6ZAfoDTHMhhTXM2CqU14TXm5usvfWoM8Hw,8578
78
78
  orchid_python_api/examples/volume_2_first_response.ipynb,sha256=0upejsPojZRpW4InYwO2qN7JVcyIIIQ6PxC6YKXAup0,12843
79
- orchid_python_api/examples/volume_2_first_response.py,sha256=uobia9BBaD2nWDH2UqaoyYr9SybEYtKW7BuZyVDwZxg,8513
79
+ orchid_python_api/examples/volume_2_first_response.py,sha256=42EYYM0_2CpmeWCScnemf6dNepPRygoqoXoXTnEPIOM,8471
80
80
  orchid_python_api/requirements.txt,sha256=TLanPPkr40ryZFRJr5wWfPKSXMerET0LYdJ5tThGKS0,127
81
81
  orchid_python_api/tutorials/dom_navigation_tutorial.ipynb,sha256=3JlkltFlfXQKbq1otJ473ZK7u7WpIyt5JuW_gOKKKBg,24046
82
82
  orchid_python_api/tutorials/dom_navigation_tutorial.py,sha256=lOfnKOsqkO07jeRCaUtXLlWmPZkhZL5k_8DeY4yrbXw,19127
83
- ReleaseNotes.md,sha256=bIYrMvxOjoKzjk-L4FFPuq9sxjbJp62AaU-ol0tpalE,23755
84
- orchid_python_api-5.25.1.dist-info/entry_points.txt,sha256=QDAEsqjA8FIVbqp-PLzjucg0JZS7eGncMNeqWaaken4,243
85
- orchid_python_api-5.25.1.dist-info/LICENSE,sha256=lLkiRGL_3TH7GEiXwubGnfyfA_Zn2OKkWO1XswLfRoQ,10316
86
- orchid_python_api-5.25.1.dist-info/METADATA,sha256=eGlxhCc9a4h-uZjoQ7ZgxwIRhDWBZbfezWf8mMQ_1Bg,34413
87
- orchid_python_api-5.25.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
88
- orchid_python_api-5.25.1.dist-info/RECORD,,
83
+ ReleaseNotes.md,sha256=j6qzS8TJn_eW3ptzYsxMRek4jXdSPzbi-h31tkcTuVA,24877
84
+ orchid_python_api-5.25.3.dist-info/entry_points.txt,sha256=QDAEsqjA8FIVbqp-PLzjucg0JZS7eGncMNeqWaaken4,243
85
+ orchid_python_api-5.25.3.dist-info/LICENSE,sha256=lLkiRGL_3TH7GEiXwubGnfyfA_Zn2OKkWO1XswLfRoQ,10316
86
+ orchid_python_api-5.25.3.dist-info/METADATA,sha256=WhqVZh0eX24Ci6KwmdbGN16teBmIBYe8KweqW0nskzM,34553
87
+ orchid_python_api-5.25.3.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
88
+ orchid_python_api-5.25.3.dist-info/RECORD,,