codeset 0.1.0a1__tar.gz → 0.1.0a3__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.
- codeset-0.1.0a3/.release-please-manifest.json +3 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/CHANGELOG.md +21 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/PKG-INFO +1 -1
- {codeset-0.1.0a1 → codeset-0.1.0a3}/bin/check-release-environment +1 -1
- {codeset-0.1.0a1 → codeset-0.1.0a3}/pyproject.toml +1 -1
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_version.py +1 -1
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session.py +3 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session_close_response.py +3 -0
- codeset-0.1.0a1/.release-please-manifest.json +0 -3
- {codeset-0.1.0a1 → codeset-0.1.0a3}/.gitignore +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/CONTRIBUTING.md +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/LICENSE +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/README.md +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/SECURITY.md +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/api.md +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/bin/publish-pypi +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/examples/.keep +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/mypy.ini +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/noxfile.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/release-please-config.json +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/requirements-dev.lock +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/requirements.lock +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/__init__.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_base_client.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_client.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_compat.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_constants.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_exceptions.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_files.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_models.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_qs.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_resource.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_streaming.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_types.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/__init__.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/_logs.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/_proxy.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/_reflection.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/_resources_proxy.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/_streams.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/_sync.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/_transform.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/_typing.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/_utils/_utils.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/lib/.keep +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/py.typed +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/resources/__init__.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/resources/health.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/resources/samples.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/resources/sessions/__init__.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/resources/sessions/sessions.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/resources/sessions/verify.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/__init__.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/container_info.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/error_info.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/health_check_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/sample_download_params.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/sample_list_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session_apply_diff_params.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session_apply_diff_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session_create_params.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session_create_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session_execute_command_params.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session_execute_command_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session_list_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/session_status.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/sessions/__init__.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/sessions/job_status.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/sessions/verify_start_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/src/codeset/types/sessions/verify_status_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/__init__.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/api_resources/__init__.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/api_resources/sessions/__init__.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/api_resources/sessions/test_verify.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/api_resources/test_health.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/api_resources/test_samples.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/api_resources/test_sessions.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/conftest.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/sample_file.txt +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_client.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_deepcopy.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_extract_files.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_files.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_models.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_qs.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_required_args.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_response.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_streaming.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_transform.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_utils/test_proxy.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/test_utils/test_typing.py +0 -0
- {codeset-0.1.0a1 → codeset-0.1.0a3}/tests/utils.py +0 -0
@@ -1,5 +1,26 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.1.0-alpha.3 (2025-06-28)
|
4
|
+
|
5
|
+
Full Changelog: [v0.1.0-alpha.2...v0.1.0-alpha.3](https://github.com/codeset-ai/codeset-sdk/compare/v0.1.0-alpha.2...v0.1.0-alpha.3)
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
* **api:** api update ([d3f8ebb](https://github.com/codeset-ai/codeset-sdk/commit/d3f8ebbfc483bed5da02d27e1ed922a1e8b9e455))
|
10
|
+
|
11
|
+
## 0.1.0-alpha.2 (2025-06-28)
|
12
|
+
|
13
|
+
Full Changelog: [v0.1.0-alpha.1...v0.1.0-alpha.2](https://github.com/codeset-ai/codeset-sdk/compare/v0.1.0-alpha.1...v0.1.0-alpha.2)
|
14
|
+
|
15
|
+
### Bug Fixes
|
16
|
+
|
17
|
+
* **ci:** release-doctor — report correct token name ([986ea32](https://github.com/codeset-ai/codeset-sdk/commit/986ea3232e329ff2aa2dbf6ee043542052e939ca))
|
18
|
+
|
19
|
+
|
20
|
+
### Chores
|
21
|
+
|
22
|
+
* **ci:** only run for pushes and fork pull requests ([3925cce](https://github.com/codeset-ai/codeset-sdk/commit/3925ccec55d27e377699ee8d5a114b72f0acc2e7))
|
23
|
+
|
3
24
|
## 0.1.0-alpha.1 (2025-06-25)
|
4
25
|
|
5
26
|
Full Changelog: [v0.0.1-alpha.0...v0.1.0-alpha.1](https://github.com/codeset-ai/codeset-sdk/compare/v0.0.1-alpha.0...v0.1.0-alpha.1)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: codeset
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.0a3
|
4
4
|
Summary: The official Python library for the codeset API
|
5
5
|
Project-URL: Homepage, https://github.com/codeset-ai/codeset-sdk
|
6
6
|
Project-URL: Repository, https://github.com/codeset-ai/codeset-sdk
|
@@ -3,7 +3,7 @@
|
|
3
3
|
errors=()
|
4
4
|
|
5
5
|
if [ -z "${PYPI_TOKEN}" ]; then
|
6
|
-
errors+=("The
|
6
|
+
errors+=("The PYPI_TOKEN secret has not been set. Please set it in either this repository's secrets or your organization secrets.")
|
7
7
|
fi
|
8
8
|
|
9
9
|
lenErrors=${#errors[@]}
|
@@ -33,5 +33,8 @@ class Session(BaseModel):
|
|
33
33
|
container_info: Optional[ContainerInfo] = None
|
34
34
|
"""Information about a container."""
|
35
35
|
|
36
|
+
duration_seconds: Optional[float] = None
|
37
|
+
"""Current duration of the session in seconds."""
|
38
|
+
|
36
39
|
error: Optional[ErrorInfo] = None
|
37
40
|
"""Details about an error that occurred during job processing."""
|
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
|
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
|
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
|
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
|
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
|
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
|
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
|