commit | 1c780b5254dfa5811df2bfffbb560031125e558c | [log] [tgz] |
---|---|---|
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | Tue Jan 14 09:16:16 2025 +0800 |
committer | Copybara-Service <copybara-worker@google.com> | Tue Jan 14 12:44:34 2025 -0800 |
tree | efca39eea60275eae40687a81f4cb56368a68c91 | |
parent | 4fc192ebdc817e7af0187ea18aa22c4ad9ef2a3f [diff] |
chore(deps-dev): bump jinja2 from 3.1.4 to 3.1.5 (#395) Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.4 to 3.1.5. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/jinja/compare/3.1.4...3.1.5) --- updated-dependencies: - dependency-name: jinja2 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> GitOrigin-RevId: c484446a6f5945e2f52a8e08737acadce24575c3 Change-Id: Id213ffbc170507bab61e88213d0fb02f0bc4bdf9
TOML Kit is a 1.0.0-compliant TOML library.
It includes a parser that preserves all comments, indentations, whitespace and internal element ordering, and makes them accessible and editable via an intuitive API.
You can also create new TOML documents from scratch using the provided helpers.
Part of the implementation has been adapted, improved and fixed from Molten.
See the documentation for more information.
If you are using Poetry, add tomlkit
to your pyproject.toml
file by using:
poetry add tomlkit
If not, you can use pip
:
pip install tomlkit
Please clone the repo with submodules with the following command git clone --recurse-submodules https://github.com/sdispater/tomlkit.git
. We need the submodule - toml-test
for running the tests.
You can run the tests with poetry run pytest -q tests