Skip to content

Commit e1e575d

Browse files
LittleCoinCoinLittleCoinCoin
authored andcommitted
feat(codex): add tomli-w dependency for TOML support
Add tomli-w>=1.0.0 to project dependencies to enable TOML writing capability for Codex MCP host configuration. Python 3.12+ includes built-in tomllib for reading TOML files. This is the first non-JSON format supported in the MCP host configuration system, requiring TOML serialization capabilities.
1 parent 2bb1d3c commit e1e575d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ dependencies = [
1919
"packaging>=20.0",
2020
"docker>=7.1.0",
2121
"pydantic>=2.0.0",
22-
"hatch-validator>=0.8.0"
22+
"hatch-validator>=0.8.0",
23+
"tomli-w>=1.0.0" # TOML writing (tomllib built-in for reading in Python 3.12+)
2324
]
2425

2526
[[project.authors]]

0 commit comments

Comments
 (0)