aipmodel 0.2.75__tar.gz → 0.2.76__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aipmodel
3
- Version: 0.2.75
3
+ Version: 0.2.76
4
4
  Summary: SDK for model registration, versioning, and storage
5
5
  Home-page: https://github.com/AIP-MLOPS/model-registry
6
6
  Author: AIP MLOPS Team
@@ -37,6 +37,11 @@ _TRANSIENT_TRANSFER_ERRORS = tuple(
37
37
  "EndpointConnectionError",
38
38
  "ReadTimeoutError",
39
39
  "IncompleteReadError",
40
+ # boto3 wraps a mid-stream connection break (urllib3 ProtocolError /
41
+ # http IncompleteRead) into ResponseStreamingError before it reaches the
42
+ # caller, so the underlying transient types below never match on their
43
+ # own for a download that dies mid-body. Retry on the wrapper too.
44
+ "ResponseStreamingError",
40
45
  )
41
46
  if hasattr(_botocore_exceptions, _name)
42
47
  ) + (
@@ -11,5 +11,5 @@ if _os.environ.get("AIPMODEL_UPDATE_CHECK", "").lower() in ("1", "true", "yes"):
11
11
 
12
12
  __all__ = ["MLOpsManager", "CephS3Manager"]
13
13
 
14
- __version__ = "0.2.75"
14
+ __version__ = "0.2.76"
15
15
  __description__ = "SDK for model registration, versioning, and storage"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aipmodel
3
- Version: 0.2.75
3
+ Version: 0.2.76
4
4
  Summary: SDK for model registration, versioning, and storage
5
5
  Home-page: https://github.com/AIP-MLOPS/model-registry
6
6
  Author: AIP MLOPS Team
@@ -31,7 +31,7 @@ version, description = read_meta()
31
31
 
32
32
  setup(
33
33
  name="aipmodel",
34
- version="0.2.75",
34
+ version="0.2.76",
35
35
  description=description,
36
36
  author="AIP MLOPS Team",
37
37
  author_email="mohmmadweb@gmail.com",
File without changes
File without changes
File without changes
File without changes