We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 179312d commit 7ed9be5Copy full SHA for 7ed9be5
eval_protocol/pytest/default_mcp_gym_rollout_processor.py
@@ -110,14 +110,6 @@ def stop(self) -> None:
110
pass
111
self._log_file = None
112
113
- if self._log_file_path and os.path.exists(self._log_file_path):
114
- try:
115
- os.remove(self._log_file_path)
116
- print(f"🧹 Cleaned up log file: {self._log_file_path}")
117
- except OSError:
118
- pass
119
- self._log_file_path = None
120
-
121
# Remove from active servers list
122
if self in MCPServerManager._active_servers:
123
MCPServerManager._active_servers.remove(self)
pyproject.toml
@@ -98,6 +98,7 @@ fireworks = [
98
box2d = [
99
"swig",
100
"gymnasium[box2d]>=0.29.0",
101
+ "Pillow",
102
]
103
104
[project.scripts]
0 commit comments