pyetp 0.0.44__tar.gz → 0.0.45__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 (29) hide show
  1. {pyetp-0.0.44/src/pyetp.egg-info → pyetp-0.0.45}/PKG-INFO +6 -2
  2. {pyetp-0.0.44 → pyetp-0.0.45}/pyproject.toml +5 -1
  3. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/_version.py +3 -3
  4. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/client.py +6 -13
  5. {pyetp-0.0.44 → pyetp-0.0.45/src/pyetp.egg-info}/PKG-INFO +6 -2
  6. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp.egg-info/requires.txt +1 -1
  7. {pyetp-0.0.44 → pyetp-0.0.45}/CONTRIBUTING.md +0 -0
  8. {pyetp-0.0.44 → pyetp-0.0.45}/LICENSE.md +0 -0
  9. {pyetp-0.0.44 → pyetp-0.0.45}/MANIFEST.in +0 -0
  10. {pyetp-0.0.44 → pyetp-0.0.45}/README.md +0 -0
  11. {pyetp-0.0.44 → pyetp-0.0.45}/SECURITY.md +0 -0
  12. {pyetp-0.0.44 → pyetp-0.0.45}/setup.cfg +0 -0
  13. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/__init__.py +0 -0
  14. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/config.py +0 -0
  15. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/resqml_objects.py +0 -0
  16. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/types.py +0 -0
  17. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/uri.py +0 -0
  18. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/utils_arrays.py +0 -0
  19. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp/utils_xml.py +0 -0
  20. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp.egg-info/SOURCES.txt +0 -0
  21. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp.egg-info/dependency_links.txt +0 -0
  22. {pyetp-0.0.44 → pyetp-0.0.45}/src/pyetp.egg-info/top_level.txt +0 -0
  23. {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/__init__.py +0 -0
  24. {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/epc_readers.py +0 -0
  25. {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/parsers.py +0 -0
  26. {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/serializers.py +0 -0
  27. {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/v201/__init__.py +0 -0
  28. {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/v201/generated.py +0 -0
  29. {pyetp-0.0.44 → pyetp-0.0.45}/src/resqml_objects/v201/utils.py +0 -0
@@ -1,15 +1,19 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyetp
3
- Version: 0.0.44
3
+ Version: 0.0.45
4
4
  Summary: Interface with OSDU RDDMS using ETP protocol
5
5
  Author-email: Adam Cheng <52572642+adamchengtkc@users.noreply.github.com>
6
6
  License-Expression: Apache-2.0
7
7
  Project-URL: homepage, https://github.com/equinor/pyetp
8
8
  Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
9
13
  Requires-Python: >=3.10
10
14
  Description-Content-Type: text/markdown
11
15
  License-File: LICENSE.md
12
- Requires-Dist: numpy>=2.0
16
+ Requires-Dist: numpy>=1.26.0
13
17
  Requires-Dist: websockets>=15.0
14
18
  Requires-Dist: lxml>=4.9.4
15
19
  Requires-Dist: pydantic>=1.10
@@ -14,9 +14,13 @@ readme = "README.md"
14
14
  license = "Apache-2.0"
15
15
  classifiers = [
16
16
  "Development Status :: 3 - Alpha",
17
+ "Programming Language :: Python :: 3.10",
18
+ "Programming Language :: Python :: 3.11",
19
+ "Programming Language :: Python :: 3.12",
20
+ "Programming Language :: Python :: 3.13",
17
21
  ]
18
22
  dependencies = [
19
- "numpy >= 2.0",
23
+ "numpy >= 1.26.0",
20
24
  "websockets >= 15.0",
21
25
  "lxml >=4.9.4",
22
26
  "pydantic >= 1.10",
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.0.44'
32
- __version_tuple__ = version_tuple = (0, 0, 44)
31
+ __version__ = version = '0.0.45'
32
+ __version_tuple__ = version_tuple = (0, 0, 45)
33
33
 
34
- __commit_id__ = commit_id = 'g33e62ae17'
34
+ __commit_id__ = commit_id = 'gef277bc08'
@@ -1506,16 +1506,9 @@ async def etp_persistent_connect(
1506
1506
  max_size=max_message_size,
1507
1507
  additional_headers=additional_headers,
1508
1508
  ):
1509
- try:
1510
- async with ETPClient(
1511
- ws=ws,
1512
- etp_timeout=etp_timeout,
1513
- max_message_size=max_message_size,
1514
- ) as etp_client:
1515
- yield etp_client
1516
- except websockets.ConnectionClosed as e:
1517
- logger.info(
1518
- f"Websockets connection closed with message '{e}'. Starting new "
1519
- "connection"
1520
- )
1521
- continue
1509
+ async with ETPClient(
1510
+ ws=ws,
1511
+ etp_timeout=etp_timeout,
1512
+ max_message_size=max_message_size,
1513
+ ) as etp_client:
1514
+ yield etp_client
@@ -1,15 +1,19 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyetp
3
- Version: 0.0.44
3
+ Version: 0.0.45
4
4
  Summary: Interface with OSDU RDDMS using ETP protocol
5
5
  Author-email: Adam Cheng <52572642+adamchengtkc@users.noreply.github.com>
6
6
  License-Expression: Apache-2.0
7
7
  Project-URL: homepage, https://github.com/equinor/pyetp
8
8
  Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Programming Language :: Python :: 3.10
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Classifier: Programming Language :: Python :: 3.13
9
13
  Requires-Python: >=3.10
10
14
  Description-Content-Type: text/markdown
11
15
  License-File: LICENSE.md
12
- Requires-Dist: numpy>=2.0
16
+ Requires-Dist: numpy>=1.26.0
13
17
  Requires-Dist: websockets>=15.0
14
18
  Requires-Dist: lxml>=4.9.4
15
19
  Requires-Dist: pydantic>=1.10
@@ -1,4 +1,4 @@
1
- numpy>=2.0
1
+ numpy>=1.26.0
2
2
  websockets>=15.0
3
3
  lxml>=4.9.4
4
4
  pydantic>=1.10
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes