Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ tiktoken~=0.9.0

html2text~=2024.2.26
gymnasium~=1.1.1
pillow~=11.1.0
pillow~=10.4.0
browsergym~=0.13.3
uvicorn~=0.34.0
unidiff~=0.7.5
Expand Down
2 changes: 1 addition & 1 deletion tests/sandbox/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async def test_sandbox_creation(local_client: LocalSandboxClient):

await local_client.create(config)
result = await local_client.run_command("python3 --version")
assert "Python 3.10" in result
assert "Python 3.12" in result


@pytest.mark.asyncio
Expand Down
2 changes: 1 addition & 1 deletion tests/sandbox/test_sandbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async def test_sandbox_python_environment(sandbox):
"""Tests Python environment configuration."""
# Test Python version
result = await sandbox.terminal.run_command("python3 --version")
assert "Python 3.10" in result
assert "Python 3.12" in result

# Test basic module imports
python_code = """
Expand Down