sbxloop-worker 0.4.3__tar.gz → 0.4.4__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.
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/PKG-INFO +3 -4
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/pyproject.toml +2 -3
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/_version.py +2 -2
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/.gitignore +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/README.md +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/__init__.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/__main__.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/_json.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/backends/__init__.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/backends/copilot.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/backends/echo.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/events.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/githubops.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/protocol.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/py.typed +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/src/sbxloop_worker/runner.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/tests/conftest.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/tests/test_githubops.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/tests/test_json_extract.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/tests/test_protocol.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/tests/test_runner_unit.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/tests/test_worker_contract.py +0 -0
- {sbxloop_worker-0.4.3 → sbxloop_worker-0.4.4}/tests/worker_harness.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sbxloop-worker
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.4
|
|
4
4
|
Summary: In-sandbox worker runtime for sbxloop (protocol models, agent backends, job runner)
|
|
5
5
|
Project-URL: Homepage, https://github.com/brettbergin/sbxloop
|
|
6
6
|
Project-URL: Repository, https://github.com/brettbergin/sbxloop
|
|
@@ -9,11 +9,10 @@ License-Expression: MIT
|
|
|
9
9
|
Classifier: Development Status :: 3 - Alpha
|
|
10
10
|
Classifier: Intended Audience :: Developers
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
14
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
15
14
|
Classifier: Typing :: Typed
|
|
16
|
-
Requires-Python: >=3.
|
|
15
|
+
Requires-Python: >=3.13
|
|
17
16
|
Requires-Dist: pydantic>=2.7
|
|
18
17
|
Provides-Extra: copilot
|
|
19
18
|
Requires-Dist: github-copilot-sdk>=1.0.8; extra == 'copilot'
|
|
@@ -3,16 +3,15 @@ name = "sbxloop-worker"
|
|
|
3
3
|
dynamic = ["version"] # derived from git tags by hatch-vcs (see [tool.hatch.version])
|
|
4
4
|
description = "In-sandbox worker runtime for sbxloop (protocol models, agent backends, job runner)"
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
requires-python = ">=3.
|
|
6
|
+
requires-python = ">=3.13"
|
|
7
7
|
license = "MIT"
|
|
8
8
|
authors = [{ name = "Brett Bergin" }]
|
|
9
9
|
classifiers = [
|
|
10
10
|
"Development Status :: 3 - Alpha",
|
|
11
11
|
"Intended Audience :: Developers",
|
|
12
12
|
"Programming Language :: Python :: 3",
|
|
13
|
-
"Programming Language :: Python :: 3.11",
|
|
14
|
-
"Programming Language :: Python :: 3.12",
|
|
15
13
|
"Programming Language :: Python :: 3.13",
|
|
14
|
+
"Programming Language :: Python :: 3.14",
|
|
16
15
|
"Typing :: Typed",
|
|
17
16
|
]
|
|
18
17
|
dependencies = ["pydantic>=2.7"]
|
|
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
|
|
|
18
18
|
commit_id: str | None
|
|
19
19
|
__commit_id__: str | None
|
|
20
20
|
|
|
21
|
-
__version__ = version = '0.4.
|
|
22
|
-
__version_tuple__ = version_tuple = (0, 4,
|
|
21
|
+
__version__ = version = '0.4.4'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 4, 4)
|
|
23
23
|
|
|
24
24
|
__commit_id__ = commit_id = None
|
|
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
|