openhands-workspace 1.8.2__tar.gz → 1.9.1__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.
- openhands_workspace-1.9.1/PKG-INFO +12 -0
- openhands_workspace-1.9.1/openhands_workspace.egg-info/PKG-INFO +12 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/pyproject.toml +7 -1
- openhands_workspace-1.8.2/PKG-INFO +0 -8
- openhands_workspace-1.8.2/openhands_workspace.egg-info/PKG-INFO +0 -8
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/__init__.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/apptainer/__init__.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/apptainer/workspace.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/cloud/__init__.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/cloud/workspace.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/docker/__init__.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/docker/dev_workspace.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/docker/workspace.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/py.typed +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/remote_api/__init__.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/remote_api/workspace.py +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands_workspace.egg-info/SOURCES.txt +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands_workspace.egg-info/dependency_links.txt +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands_workspace.egg-info/requires.txt +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands_workspace.egg-info/top_level.txt +0 -0
- {openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/setup.cfg +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: openhands-workspace
|
|
3
|
+
Version: 1.9.1
|
|
4
|
+
Summary: OpenHands Workspace - Docker and container-based workspace implementations
|
|
5
|
+
Project-URL: Source, https://github.com/OpenHands/software-agent-sdk
|
|
6
|
+
Project-URL: Homepage, https://github.com/OpenHands/software-agent-sdk
|
|
7
|
+
Project-URL: Documentation, https://docs.openhands.dev/sdk
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/OpenHands/software-agent-sdk/issues
|
|
9
|
+
Requires-Python: >=3.12
|
|
10
|
+
Requires-Dist: openhands-sdk
|
|
11
|
+
Requires-Dist: openhands-agent-server
|
|
12
|
+
Requires-Dist: pydantic>=2.11.7
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: openhands-workspace
|
|
3
|
+
Version: 1.9.1
|
|
4
|
+
Summary: OpenHands Workspace - Docker and container-based workspace implementations
|
|
5
|
+
Project-URL: Source, https://github.com/OpenHands/software-agent-sdk
|
|
6
|
+
Project-URL: Homepage, https://github.com/OpenHands/software-agent-sdk
|
|
7
|
+
Project-URL: Documentation, https://docs.openhands.dev/sdk
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/OpenHands/software-agent-sdk/issues
|
|
9
|
+
Requires-Python: >=3.12
|
|
10
|
+
Requires-Dist: openhands-sdk
|
|
11
|
+
Requires-Dist: openhands-agent-server
|
|
12
|
+
Requires-Dist: pydantic>=2.11.7
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "openhands-workspace"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.9.1"
|
|
4
4
|
description = "OpenHands Workspace - Docker and container-based workspace implementations"
|
|
5
5
|
|
|
6
6
|
requires-python = ">=3.12"
|
|
@@ -10,6 +10,12 @@ dependencies = [
|
|
|
10
10
|
"pydantic>=2.11.7",
|
|
11
11
|
]
|
|
12
12
|
|
|
13
|
+
[project.urls]
|
|
14
|
+
Source = "https://github.com/OpenHands/software-agent-sdk"
|
|
15
|
+
Homepage = "https://github.com/OpenHands/software-agent-sdk"
|
|
16
|
+
Documentation = "https://docs.openhands.dev/sdk"
|
|
17
|
+
"Bug Tracker" = "https://github.com/OpenHands/software-agent-sdk/issues"
|
|
18
|
+
|
|
13
19
|
[build-system]
|
|
14
20
|
requires = ["setuptools>=61.0", "wheel"]
|
|
15
21
|
build-backend = "setuptools.build_meta"
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: openhands-workspace
|
|
3
|
-
Version: 1.8.2
|
|
4
|
-
Summary: OpenHands Workspace - Docker and container-based workspace implementations
|
|
5
|
-
Requires-Python: >=3.12
|
|
6
|
-
Requires-Dist: openhands-sdk
|
|
7
|
-
Requires-Dist: openhands-agent-server
|
|
8
|
-
Requires-Dist: pydantic>=2.11.7
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: openhands-workspace
|
|
3
|
-
Version: 1.8.2
|
|
4
|
-
Summary: OpenHands Workspace - Docker and container-based workspace implementations
|
|
5
|
-
Requires-Python: >=3.12
|
|
6
|
-
Requires-Dist: openhands-sdk
|
|
7
|
-
Requires-Dist: openhands-agent-server
|
|
8
|
-
Requires-Dist: pydantic>=2.11.7
|
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/apptainer/__init__.py
RENAMED
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/apptainer/workspace.py
RENAMED
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/cloud/__init__.py
RENAMED
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/cloud/workspace.py
RENAMED
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/docker/__init__.py
RENAMED
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/docker/dev_workspace.py
RENAMED
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/docker/workspace.py
RENAMED
|
File without changes
|
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/remote_api/__init__.py
RENAMED
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands/workspace/remote_api/workspace.py
RENAMED
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands_workspace.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands_workspace.egg-info/requires.txt
RENAMED
|
File without changes
|
{openhands_workspace-1.8.2 → openhands_workspace-1.9.1}/openhands_workspace.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|