matelab-python-sdk 0.1.0a8__tar.gz → 0.1.0a9__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 (61) hide show
  1. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/.github/workflows/release.yml +2 -0
  2. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/AGENTS.md +2 -2
  3. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/CHANGELOG.md +8 -0
  4. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/PKG-INFO +10 -9
  5. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/README.md +9 -8
  6. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/pyproject.toml +1 -1
  7. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/__init__.py +0 -2
  8. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/_transport.py +7 -7
  9. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/errors.py +2 -17
  10. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_client.py +9 -11
  11. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_cloud_drive.py +2 -2
  12. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_errors.py +13 -11
  13. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_records.py +2 -2
  14. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_release.py +9 -0
  15. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_streaming.py +2 -2
  16. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_transport.py +7 -5
  17. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_users.py +2 -2
  18. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/typing/consumer.py +5 -0
  19. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/uv.lock +1 -1
  20. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/.env.example +0 -0
  21. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/.gitignore +0 -0
  22. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/LICENSE +0 -0
  23. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/NOTICE +0 -0
  24. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/contracts/matelab-integration-v1.lock.json +0 -0
  25. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/contracts/matelab-integration-v1.openapi.yaml +0 -0
  26. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/docs/operation-coverage.yaml +0 -0
  27. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/scripts/check_installed_package.py +0 -0
  28. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/scripts/check_release.py +0 -0
  29. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/scripts/generate_models.py +0 -0
  30. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/_generated/__init__.py +0 -0
  31. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/_generated/models.py +0 -0
  32. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/_wire_validation.py +0 -0
  33. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/client.py +0 -0
  34. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/domains/__init__.py +0 -0
  35. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/domains/cloud_drive.py +0 -0
  36. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/domains/groups.py +0 -0
  37. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/domains/literature.py +0 -0
  38. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/domains/notebooks.py +0 -0
  39. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/domains/records.py +0 -0
  40. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/domains/templates.py +0 -0
  41. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/domains/uploads.py +0 -0
  42. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/domains/users.py +0 -0
  43. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/py.typed +0 -0
  44. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/session.py +0 -0
  45. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/src/matelab/streaming.py +0 -0
  46. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/conftest.py +0 -0
  47. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/provider/test_provider_smoke.py +0 -0
  48. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_comments_and_downloads.py +0 -0
  49. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_consumer_smoke.py +0 -0
  50. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_extended_records.py +0 -0
  51. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_generation.py +0 -0
  52. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_groups.py +0 -0
  53. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_notebook_lifecycle.py +0 -0
  54. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_notebooks.py +0 -0
  55. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_operation_coverage.py +0 -0
  56. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_record_lifecycle.py +0 -0
  57. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_record_mutations.py +0 -0
  58. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_template_lifecycle.py +0 -0
  59. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_templates.py +0 -0
  60. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/test_uploads_and_literature.py +0 -0
  61. {matelab_python_sdk-0.1.0a8 → matelab_python_sdk-0.1.0a9}/tests/typing/pyproject.toml +0 -0
@@ -23,6 +23,7 @@ jobs:
23
23
  uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
24
24
  with:
25
25
  version: "0.11.32"
26
+ python-version: ${{ matrix.python-version }}
26
27
  - name: Sync locked environment
27
28
  run: uv sync --frozen --python "${{ matrix.python-version }}"
28
29
  - name: Check generated wire models
@@ -53,6 +54,7 @@ jobs:
53
54
  uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
54
55
  with:
55
56
  version: "0.11.32"
57
+ python-version: "3.14"
56
58
  - name: Verify tag and configure timestamp
57
59
  shell: bash
58
60
  run: |
@@ -62,8 +62,8 @@
62
62
  - mutation 默认不自动重试。multipart 或 stream 只有在确认可重放时才能重试;download stream 不自动重放,
63
63
  必须支持显式关闭。
64
64
  - HTTP/transport、Provider business/authentication、Wire Contract/schema 和 client usage 错误必须稳定区分。
65
- - 每个公开 `MatelabError` 必须直接提供稳定的集成级 `category` 和保守的 `retryable`;Provider kind 和 HTTP
66
- status 只用于诊断,下游不得重新解释 Provider 数字 code 才能决定恢复类别。
65
+ - 每个公开 `MatelabError` 必须直接提供稳定的集成级 `category` 和保守的 `retryable`;HTTP status 只用于诊断,
66
+ 下游不得重新解释 Provider 数字 code 才能决定恢复类别。
67
67
  - password、token、SSO code/key、临时附件凭证、原始文件内容和敏感 payload 不得进入日志、异常或提交内容。
68
68
 
69
69
  ## 测试与质量门槛
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0a9 - 2026-08-04
4
+
5
+ - Breaking: removes `MatelabProviderErrorKind` and `MatelabProviderError.kind`; Provider wire codes now map directly
6
+ to the final `MatelabErrorCategory`, which integrations consume through `MatelabError.category`. This public API
7
+ removal requires a subsequent SemVer-appropriate release before distribution. Operation-specific code `0`/`10`
8
+ success handling and the bounded code `5` authentication refresh remain unchanged.
9
+ - Adds a conservative `retryable` flag to every public SDK error.
10
+
3
11
  ## 0.1.0a8 - 2026-08-04
4
12
 
5
13
  - Adds a unified `MatelabErrorCategory` and conservative `retryable` flag to every public SDK error, centralizing
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: matelab-python-sdk
3
- Version: 0.1.0a8
3
+ Version: 0.1.0a9
4
4
  Summary: Reusable async Python client for the Matelab Integration Contract
5
5
  Author-email: 朱天念 <zhutiannian@gmail.com>
6
6
  License-Expression: Apache-2.0
@@ -29,7 +29,7 @@ Description-Content-Type: text/markdown
29
29
 
30
30
  Reusable async Python client for the Matelab Integration Contract.
31
31
 
32
- The current alpha is `0.1.0a8`. `[project].version` in `pyproject.toml` is the sole SDK version source;
32
+ The current alpha is `0.1.0a9`. `[project].version` in `pyproject.toml` is the sole SDK version source;
33
33
  `uv.lock` only mirrors that source.
34
34
 
35
35
  The SDK is pinned to the immutable `matelab-spec v0.3.0` Contract Release. The sole release pin is
@@ -58,7 +58,7 @@ To test the same artifact a downstream Consumer will install, build and install
58
58
 
59
59
  ```bash
60
60
  uv build --no-build-isolation --out-dir dist/release
61
- python -m pip install dist/release/matelab_python_sdk-0.1.0a8-py3-none-any.whl
61
+ python -m pip install dist/release/matelab_python_sdk-0.1.0a9-py3-none-any.whl
62
62
  ```
63
63
 
64
64
  Do not infer Provider compatibility from the SDK version alone. A release is also bound to the Contract
@@ -93,16 +93,17 @@ Provider details:
93
93
  |---|---|---:|---|
94
94
  | `MatelabAuthenticationError` | `AUTHENTICATION` | No | The Session or credentials cannot authenticate; obtain valid authentication before making a new call. |
95
95
  | `MatelabUsageError` | `VALIDATION` | No | The call cannot be represented safely; correct its arguments. |
96
- | `MatelabProviderError` | `BUSINESS`, `VALIDATION`, or `UPSTREAM` | No | The Provider rejected the request; route by `category`, with `kind` available only for diagnosis. |
96
+ | `MatelabProviderError` | `BUSINESS`, `VALIDATION`, or `UPSTREAM` | No | The Provider rejected the request; route directly by `category`. |
97
97
  | `MatelabTransportError` | `UPSTREAM` | No | The HTTP exchange failed; `status_code` is present for HTTP failures, and a mutation outcome may be unknown. |
98
98
  | `MatelabProtocolError` | `UPSTREAM` | No | The response violates the pinned Contract; treat it as Provider drift or an SDK defect. |
99
99
 
100
- For `MatelabProviderError`, the SDK maps `REJECTED` to `BUSINESS`, `VALIDATION` to `VALIDATION`, and `SERVER` or
101
- `UNKNOWN` to `UPSTREAM`. `MatelabProviderError.kind` remains a `MatelabProviderErrorKind` diagnostic, but integrations
102
- do not need it for recovery routing. Authentication codes are hidden behind `MatelabAuthenticationError`; raw Provider
103
- codes are not part of the public error interface.
100
+ For `MatelabProviderError`, the SDK maps Provider wire code `2` to `BUSINESS`, `4` to `VALIDATION`, and `3` or an
101
+ unknown code to `UPSTREAM`. Authentication codes are hidden behind `MatelabAuthenticationError`; raw Provider codes
102
+ are not part of the public error interface. Code `5` triggers at most one refresh and replay only for authenticated
103
+ operations that explicitly enable `retry_on_access_expired`; otherwise codes `1` and `5` raise
104
+ `MatelabAuthenticationError` directly.
104
105
  Codes `0` and `10` remain operation-specific successes selected by the pinned Contract; an operation that receives a
105
- success code it does not allow raises `MatelabProtocolError` rather than assigning an error kind.
106
+ success code it does not allow raises `MatelabProtocolError` rather than assigning an error category.
106
107
  `MatelabTransportError.status_code` remains available for HTTP failures. Provider response bodies and caller inputs are
107
108
  never attached to exceptions. `retryable` means the identical SDK call is safe to replay without further
108
109
  interpretation. It is conservatively `False` for every current SDK error because the Contract does not guarantee
@@ -2,7 +2,7 @@
2
2
 
3
3
  Reusable async Python client for the Matelab Integration Contract.
4
4
 
5
- The current alpha is `0.1.0a8`. `[project].version` in `pyproject.toml` is the sole SDK version source;
5
+ The current alpha is `0.1.0a9`. `[project].version` in `pyproject.toml` is the sole SDK version source;
6
6
  `uv.lock` only mirrors that source.
7
7
 
8
8
  The SDK is pinned to the immutable `matelab-spec v0.3.0` Contract Release. The sole release pin is
@@ -31,7 +31,7 @@ To test the same artifact a downstream Consumer will install, build and install
31
31
 
32
32
  ```bash
33
33
  uv build --no-build-isolation --out-dir dist/release
34
- python -m pip install dist/release/matelab_python_sdk-0.1.0a8-py3-none-any.whl
34
+ python -m pip install dist/release/matelab_python_sdk-0.1.0a9-py3-none-any.whl
35
35
  ```
36
36
 
37
37
  Do not infer Provider compatibility from the SDK version alone. A release is also bound to the Contract
@@ -66,16 +66,17 @@ Provider details:
66
66
  |---|---|---:|---|
67
67
  | `MatelabAuthenticationError` | `AUTHENTICATION` | No | The Session or credentials cannot authenticate; obtain valid authentication before making a new call. |
68
68
  | `MatelabUsageError` | `VALIDATION` | No | The call cannot be represented safely; correct its arguments. |
69
- | `MatelabProviderError` | `BUSINESS`, `VALIDATION`, or `UPSTREAM` | No | The Provider rejected the request; route by `category`, with `kind` available only for diagnosis. |
69
+ | `MatelabProviderError` | `BUSINESS`, `VALIDATION`, or `UPSTREAM` | No | The Provider rejected the request; route directly by `category`. |
70
70
  | `MatelabTransportError` | `UPSTREAM` | No | The HTTP exchange failed; `status_code` is present for HTTP failures, and a mutation outcome may be unknown. |
71
71
  | `MatelabProtocolError` | `UPSTREAM` | No | The response violates the pinned Contract; treat it as Provider drift or an SDK defect. |
72
72
 
73
- For `MatelabProviderError`, the SDK maps `REJECTED` to `BUSINESS`, `VALIDATION` to `VALIDATION`, and `SERVER` or
74
- `UNKNOWN` to `UPSTREAM`. `MatelabProviderError.kind` remains a `MatelabProviderErrorKind` diagnostic, but integrations
75
- do not need it for recovery routing. Authentication codes are hidden behind `MatelabAuthenticationError`; raw Provider
76
- codes are not part of the public error interface.
73
+ For `MatelabProviderError`, the SDK maps Provider wire code `2` to `BUSINESS`, `4` to `VALIDATION`, and `3` or an
74
+ unknown code to `UPSTREAM`. Authentication codes are hidden behind `MatelabAuthenticationError`; raw Provider codes
75
+ are not part of the public error interface. Code `5` triggers at most one refresh and replay only for authenticated
76
+ operations that explicitly enable `retry_on_access_expired`; otherwise codes `1` and `5` raise
77
+ `MatelabAuthenticationError` directly.
77
78
  Codes `0` and `10` remain operation-specific successes selected by the pinned Contract; an operation that receives a
78
- success code it does not allow raises `MatelabProtocolError` rather than assigning an error kind.
79
+ success code it does not allow raises `MatelabProtocolError` rather than assigning an error category.
79
80
  `MatelabTransportError.status_code` remains available for HTTP failures. Provider response bodies and caller inputs are
80
81
  never attached to exceptions. `retryable` means the identical SDK call is safe to replay without further
81
82
  interpretation. It is conservatively `False` for every current SDK error because the Contract does not guarantee
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "matelab-python-sdk"
7
- version = "0.1.0a8"
7
+ version = "0.1.0a9"
8
8
  description = "Reusable async Python client for the Matelab Integration Contract"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -118,7 +118,6 @@ from matelab.errors import (
118
118
  MatelabErrorCategory,
119
119
  MatelabProtocolError,
120
120
  MatelabProviderError,
121
- MatelabProviderErrorKind,
122
121
  MatelabTransportError,
123
122
  MatelabUsageError,
124
123
  )
@@ -169,7 +168,6 @@ __all__ = [
169
168
  "MatelabErrorCategory",
170
169
  "MatelabProtocolError",
171
170
  "MatelabProviderError",
172
- "MatelabProviderErrorKind",
173
171
  "MatelabTransportError",
174
172
  "MatelabUsageError",
175
173
  "NotebookCollection",
@@ -14,9 +14,9 @@ from matelab._generated import models as wire_models
14
14
  from matelab._wire_validation import validate_request
15
15
  from matelab.errors import (
16
16
  MatelabAuthenticationError,
17
+ MatelabErrorCategory,
17
18
  MatelabProtocolError,
18
19
  MatelabProviderError,
19
- MatelabProviderErrorKind,
20
20
  MatelabTransportError,
21
21
  MatelabUsageError,
22
22
  )
@@ -42,12 +42,12 @@ def _provider_error(code: int, *, provider_message: str) -> MatelabAuthenticatio
42
42
  return MatelabAuthenticationError("Matelab authentication failed.")
43
43
  if code == 5:
44
44
  return MatelabAuthenticationError("Access token expired.")
45
- kind = {
46
- 2: MatelabProviderErrorKind.REJECTED,
47
- 3: MatelabProviderErrorKind.SERVER,
48
- 4: MatelabProviderErrorKind.VALIDATION,
49
- }.get(code, MatelabProviderErrorKind.UNKNOWN)
50
- return MatelabProviderError(provider_message, kind=kind)
45
+ category = {
46
+ 2: MatelabErrorCategory.BUSINESS,
47
+ 3: MatelabErrorCategory.UPSTREAM,
48
+ 4: MatelabErrorCategory.VALIDATION,
49
+ }.get(code, MatelabErrorCategory.UPSTREAM)
50
+ return MatelabProviderError(provider_message, category=category)
51
51
 
52
52
 
53
53
  class Encoding(StrEnum):
@@ -17,27 +17,12 @@ class MatelabError(Exception):
17
17
  retryable: bool = False
18
18
 
19
19
 
20
- class MatelabProviderErrorKind(StrEnum):
21
- """Stable interpretation of a Provider error envelope."""
22
-
23
- REJECTED = "rejected"
24
- SERVER = "server"
25
- VALIDATION = "validation"
26
- UNKNOWN = "unknown"
27
-
28
-
29
20
  class MatelabProviderError(MatelabError):
30
21
  """The Provider returned a non-authentication error envelope."""
31
22
 
32
- def __init__(self, message: str, *, kind: MatelabProviderErrorKind) -> None:
23
+ def __init__(self, message: str, *, category: MatelabErrorCategory) -> None:
33
24
  super().__init__(message)
34
- self.kind = kind
35
- self.category = {
36
- MatelabProviderErrorKind.REJECTED: MatelabErrorCategory.BUSINESS,
37
- MatelabProviderErrorKind.SERVER: MatelabErrorCategory.UPSTREAM,
38
- MatelabProviderErrorKind.VALIDATION: MatelabErrorCategory.VALIDATION,
39
- MatelabProviderErrorKind.UNKNOWN: MatelabErrorCategory.UPSTREAM,
40
- }[kind]
25
+ self.category = category
41
26
 
42
27
 
43
28
  class MatelabAuthenticationError(MatelabError):
@@ -13,7 +13,6 @@ from matelab import (
13
13
  MatelabErrorCategory,
14
14
  MatelabProtocolError,
15
15
  MatelabProviderError,
16
- MatelabProviderErrorKind,
17
16
  MatelabUsageError,
18
17
  Session,
19
18
  Token,
@@ -133,7 +132,7 @@ async def test_authenticate_does_not_expose_provider_error_body() -> None:
133
132
  rendered = str(caught.value)
134
133
  assert password not in rendered
135
134
  assert rendered == "Matelab request failed."
136
- assert caught.value.kind is MatelabProviderErrorKind.REJECTED
135
+ assert caught.value.category is MatelabErrorCategory.BUSINESS
137
136
  assert not hasattr(caught.value, "code")
138
137
  assert not hasattr(caught.value, "payload")
139
138
 
@@ -227,7 +226,7 @@ async def test_exchange_chat_sso_code_does_not_expose_provider_error_body() -> N
227
226
  assert code not in rendered
228
227
  assert key not in rendered
229
228
  assert rendered == "Matelab request failed."
230
- assert caught.value.kind is MatelabProviderErrorKind.REJECTED
229
+ assert caught.value.category is MatelabErrorCategory.BUSINESS
231
230
  assert not hasattr(caught.value, "payload")
232
231
 
233
232
 
@@ -366,18 +365,18 @@ def test_session_models_reject_invalid_values_and_extra_fields() -> None:
366
365
 
367
366
 
368
367
  @pytest.mark.parametrize(
369
- ("code", "kind", "category"),
368
+ ("code", "category"),
370
369
  [
371
- (2, MatelabProviderErrorKind.REJECTED, MatelabErrorCategory.BUSINESS),
372
- (3, MatelabProviderErrorKind.SERVER, MatelabErrorCategory.UPSTREAM),
373
- (4, MatelabProviderErrorKind.VALIDATION, MatelabErrorCategory.VALIDATION),
374
- (11, MatelabProviderErrorKind.UNKNOWN, MatelabErrorCategory.UPSTREAM),
375
- (99, MatelabProviderErrorKind.UNKNOWN, MatelabErrorCategory.UPSTREAM),
370
+ (2, MatelabErrorCategory.BUSINESS),
371
+ (3, MatelabErrorCategory.UPSTREAM),
372
+ (4, MatelabErrorCategory.VALIDATION),
373
+ (11, MatelabErrorCategory.UPSTREAM),
374
+ (99, MatelabErrorCategory.UPSTREAM),
376
375
  ],
377
376
  )
378
377
  @pytest.mark.asyncio
379
378
  async def test_provider_error_codes_are_hidden_behind_stable_semantics(
380
- code: int, kind: MatelabProviderErrorKind, category: MatelabErrorCategory
379
+ code: int, category: MatelabErrorCategory
381
380
  ) -> None:
382
381
  async def handler(_: Request) -> Response:
383
382
  return Response(200, json={"code": code, "msg": "rejected", "errcode": code, "errmsg": "rejected"})
@@ -388,7 +387,6 @@ async def test_provider_error_codes_are_hidden_behind_stable_semantics(
388
387
  _ = await client.authenticate("alice@example.org", "bad-password")
389
388
 
390
389
  assert isinstance(caught.value, MatelabError)
391
- assert caught.value.kind is kind
392
390
  assert caught.value.category is category
393
391
  assert caught.value.retryable is False
394
392
  assert not hasattr(caught.value, "code")
@@ -12,9 +12,9 @@ from matelab import (
12
12
  CloudFile,
13
13
  CloudFileRef,
14
14
  CloudFolderRef,
15
+ MatelabErrorCategory,
15
16
  MatelabProtocolError,
16
17
  MatelabProviderError,
17
- MatelabProviderErrorKind,
18
18
  MatelabUsageError,
19
19
  Session,
20
20
  StagedFile,
@@ -430,4 +430,4 @@ async def test_download_cloud_file_uses_identity_thumbnail_preview_and_range_str
430
430
  CloudFileRef(cloud_file_id=501), thumbnail=True, preview=False, byte_range=ByteRange.between(1, 3)
431
431
  )
432
432
 
433
- assert caught.value.kind is MatelabProviderErrorKind.REJECTED
433
+ assert caught.value.category is MatelabErrorCategory.BUSINESS
@@ -1,17 +1,22 @@
1
1
  import pytest
2
2
 
3
+ import matelab
3
4
  from matelab import (
4
5
  MatelabAuthenticationError,
5
6
  MatelabError,
6
7
  MatelabErrorCategory,
7
8
  MatelabProtocolError,
8
9
  MatelabProviderError,
9
- MatelabProviderErrorKind,
10
10
  MatelabTransportError,
11
11
  MatelabUsageError,
12
12
  )
13
13
 
14
14
 
15
+ def test_provider_error_kind_is_not_part_of_public_interface() -> None:
16
+ assert "MatelabProviderErrorKind" not in matelab.__all__
17
+ assert not hasattr(matelab, "MatelabProviderErrorKind")
18
+
19
+
15
20
  def test_error_category_values_are_stable_for_integrations() -> None:
16
21
  assert {category.name: category.value for category in MatelabErrorCategory} == {
17
22
  "AUTHENTICATION": "authentication",
@@ -39,22 +44,19 @@ def test_public_errors_expose_integration_category_and_conservative_retryability
39
44
 
40
45
 
41
46
  @pytest.mark.parametrize(
42
- ("kind", "category"),
47
+ "category",
43
48
  [
44
- (MatelabProviderErrorKind.REJECTED, MatelabErrorCategory.BUSINESS),
45
- (MatelabProviderErrorKind.SERVER, MatelabErrorCategory.UPSTREAM),
46
- (MatelabProviderErrorKind.VALIDATION, MatelabErrorCategory.VALIDATION),
47
- (MatelabProviderErrorKind.UNKNOWN, MatelabErrorCategory.UPSTREAM),
49
+ MatelabErrorCategory.BUSINESS,
50
+ MatelabErrorCategory.UPSTREAM,
51
+ MatelabErrorCategory.VALIDATION,
48
52
  ],
49
53
  )
50
- def test_provider_error_kind_is_diagnostic_and_category_is_integration_semantics(
51
- kind: MatelabProviderErrorKind, category: MatelabErrorCategory
52
- ) -> None:
53
- error = MatelabProviderError("failure", kind=kind)
54
+ def test_provider_error_exposes_final_integration_category(category: MatelabErrorCategory) -> None:
55
+ error = MatelabProviderError("failure", category=category)
54
56
 
55
- assert error.kind is kind
56
57
  assert error.category is category
57
58
  assert error.retryable is False
59
+ assert not hasattr(error, "kind")
58
60
 
59
61
 
60
62
  def test_transport_error_preserves_http_status_without_changing_integration_semantics() -> None:
@@ -7,9 +7,9 @@ from httpx2 import AsyncClient, MockTransport, Request, Response
7
7
  from matelab import (
8
8
  AsyncMatelab,
9
9
  Identity,
10
+ MatelabErrorCategory,
10
11
  MatelabProtocolError,
11
12
  MatelabProviderError,
12
- MatelabProviderErrorKind,
13
13
  MatelabUsageError,
14
14
  NotebookRef,
15
15
  RecordLocator,
@@ -184,7 +184,7 @@ async def test_record_domain_classifies_provider_business_errors() -> None:
184
184
  with pytest.raises(MatelabProviderError, match="Matelab request failed") as caught:
185
185
  _ = await client.records.list(notebook=notebook)
186
186
 
187
- assert caught.value.kind is MatelabProviderErrorKind.REJECTED
187
+ assert caught.value.category is MatelabErrorCategory.BUSINESS
188
188
 
189
189
 
190
190
  @pytest.mark.asyncio
@@ -101,6 +101,15 @@ def test_release_version_has_one_runtime_source() -> None:
101
101
  assert all("__version__" not in path.read_text() for path in (_ROOT / "src" / "matelab").rglob("*.py"))
102
102
 
103
103
 
104
+ def test_release_workflow_uses_python_specific_uv_cache_keys() -> None:
105
+ workflow = (_ROOT / ".github" / "workflows" / "release.yml").read_text()
106
+ test_job = workflow.partition(" test:")[2].partition("\n build:")[0]
107
+ build_job = workflow.partition(" build:")[2].partition("\n publish:")[0]
108
+
109
+ assert " python-version: ${{ matrix.python-version }}" in test_job
110
+ assert ' python-version: "3.14"' in build_job
111
+
112
+
104
113
  def test_lockfile_mirrors_project_version() -> None:
105
114
  pyproject = tomllib.loads((_ROOT / "pyproject.toml").read_text())
106
115
  project = cast(dict[str, object], pyproject["project"])
@@ -6,9 +6,9 @@ from httpx2 import AsyncByteStream, AsyncClient, MockTransport, ReadError, Reque
6
6
  from matelab import (
7
7
  ByteRange,
8
8
  MatelabAuthenticationError,
9
+ MatelabErrorCategory,
9
10
  MatelabProtocolError,
10
11
  MatelabProviderError,
11
- MatelabProviderErrorKind,
12
12
  MatelabTransportError,
13
13
  MatelabUsageError,
14
14
  Session,
@@ -257,7 +257,7 @@ async def test_stream_classifies_json_error_without_exposing_response_body(provi
257
257
  assert _HASH not in rendered
258
258
  assert access_token not in rendered
259
259
  assert rendered == "Matelab download failed."
260
- assert caught.value.kind is MatelabProviderErrorKind.REJECTED
260
+ assert caught.value.category is MatelabErrorCategory.BUSINESS
261
261
  assert not hasattr(caught.value, "code")
262
262
  assert not hasattr(caught.value, "payload")
263
263
 
@@ -11,9 +11,9 @@ from matelab._generated.models import BasicSuccessResponse, RecordListResponse,
11
11
  from matelab._transport import Encoding, Operation, SessionTransport
12
12
  from matelab.errors import (
13
13
  MatelabAuthenticationError,
14
+ MatelabErrorCategory,
14
15
  MatelabProtocolError,
15
16
  MatelabProviderError,
16
- MatelabProviderErrorKind,
17
17
  MatelabTransportError,
18
18
  MatelabUsageError,
19
19
  )
@@ -39,8 +39,9 @@ def _session(
39
39
  )
40
40
 
41
41
 
42
+ @pytest.mark.parametrize("code", [0, 10])
42
43
  @pytest.mark.asyncio
43
- async def test_transport_uses_operation_encoding_bearer_and_success_codes() -> None:
44
+ async def test_transport_accepts_each_success_code_only_when_declared_for_operation(code: int) -> None:
44
45
  async def handler(request: Request) -> Response:
45
46
  assert request.method == "POST"
46
47
  assert request.url.path == "/api/eln_api/items"
@@ -48,7 +49,8 @@ async def test_transport_uses_operation_encoding_bearer_and_success_codes() -> N
48
49
  assert request.headers["Content-Type"] == "application/json"
49
50
  assert json.loads(request.content) == {"eln": "Example Notebook"}
50
51
  return Response(
51
- 200, json={"code": 10, "msg": "", "errcode": 10, "errmsg": "", "items": [], "subtypes": [], "trash_num": 0}
52
+ 200,
53
+ json={"code": code, "msg": "", "errcode": code, "errmsg": "", "items": [], "subtypes": [], "trash_num": 0},
52
54
  )
53
55
 
54
56
  operation = Operation(
@@ -56,7 +58,7 @@ async def test_transport_uses_operation_encoding_bearer_and_success_codes() -> N
56
58
  path="/eln_api/items",
57
59
  encoding=Encoding.JSON,
58
60
  response_model=RecordListResponse,
59
- success_codes=frozenset({0, 10}),
61
+ success_codes=frozenset({code}),
60
62
  )
61
63
  async with AsyncClient(base_url="https://matelab.example/api", transport=MockTransport(handler)) as http_client:
62
64
  transport = SessionTransport(http_client=http_client, session=_session())
@@ -104,7 +106,7 @@ async def test_transport_classifies_provider_business_errors() -> None:
104
106
  with pytest.raises(MatelabProviderError, match="Matelab request failed") as caught:
105
107
  _ = await transport.request(operation, payload={"eln": ""})
106
108
 
107
- assert caught.value.kind is MatelabProviderErrorKind.REJECTED
109
+ assert caught.value.category is MatelabErrorCategory.BUSINESS
108
110
  assert not hasattr(caught.value, "code")
109
111
  assert not hasattr(caught.value, "payload")
110
112
 
@@ -5,9 +5,9 @@ from httpx2 import AsyncClient, MockTransport, Request, Response
5
5
 
6
6
  from matelab import (
7
7
  AsyncMatelab,
8
+ MatelabErrorCategory,
8
9
  MatelabProtocolError,
9
10
  MatelabProviderError,
10
- MatelabProviderErrorKind,
11
11
  MatelabTransportError,
12
12
  MatelabUsageError,
13
13
  Session,
@@ -112,7 +112,7 @@ async def test_search_users_classifies_provider_business_errors(provider_session
112
112
  with pytest.raises(MatelabProviderError, match="Matelab request failed") as caught:
113
113
  _ = await client.users.search("Example")
114
114
 
115
- assert caught.value.kind is MatelabProviderErrorKind.REJECTED
115
+ assert caught.value.category is MatelabErrorCategory.BUSINESS
116
116
 
117
117
 
118
118
  @pytest.mark.asyncio
@@ -2,6 +2,7 @@ from matelab import (
2
2
  AsyncMatelab,
3
3
  MatelabError,
4
4
  MatelabErrorCategory,
5
+ MatelabProviderError,
5
6
  NotebookCollection,
6
7
  NotebookRef,
7
8
  RecordAttachmentChange,
@@ -29,6 +30,10 @@ def consume_error(error: MatelabError) -> tuple[MatelabErrorCategory, bool]:
29
30
  return category, retryable
30
31
 
31
32
 
33
+ def construct_provider_error(category: MatelabErrorCategory) -> MatelabProviderError:
34
+ return MatelabProviderError("failure", category=category)
35
+
36
+
32
37
  async def consume_public_types(client: AsyncMatelab) -> tuple[Session | None, NotebookCollection]:
33
38
  notebooks: NotebookCollection = await client.notebooks.list()
34
39
  session: Session | None = client.session
@@ -352,7 +352,7 @@ wheels = [
352
352
 
353
353
  [[package]]
354
354
  name = "matelab-python-sdk"
355
- version = "0.1.0a8"
355
+ version = "0.1.0a9"
356
356
  source = { editable = "." }
357
357
  dependencies = [
358
358
  { name = "httpx2" },