Skip to main content

Format your pyproject.toml file

Project description

Apply a consistent format to your tox.toml file with comment support. See changelog here.

Recent Changes

Philosophy

This tool aims to be an opinionated formatter, with similar objectives to black. This means it deliberately does not support a wide variety of configuration settings. In return, you get consistency, predictability, and smaller diffs.

Use

Via CLI

tox-toml-fmt is a CLI tool that needs a Python interpreter (version 3.10 or higher) to run. We recommend either pipx or uv to install tox-toml-fmt into an isolated environment. This has the added benefit that later you will be able to upgrade tox-toml-fmt without affecting other parts of the system. We provide a method for pip too here, but we discourage that path if you can:

# install uv per https://docs.astral.sh/uv/#getting-started
uv tool install tox-toml-fmt
tox-toml-fmt --help

Via pre-commit hook

See pre-commit/pre-commit for instructions, sample .pre-commit-config.yaml:

- repo: https://github.com/tox-dev/tox-toml-fmt
  rev: "v1.0.0"
  hooks:
    - id: tox-toml-fmt

Via Python

You can use tox-toml-fmt as a Python module to format TOML content programmatically.

from tox_toml_fmt import run

# Format a tox.toml file and return the exit code
exit_code = run(["path/to/tox.toml"])

The run function accepts command-line arguments as a list and returns an exit code (0 for success, non-zero for failure).

The [tox-toml-fmt] table is used when present in the tox.toml file:

[tox-toml-fmt]

# After how many columns split arrays/dicts into multiple lines and wrap long strings;
# use a trailing comma in arrays to force multiline format instead of lowering this value
column_width = 120

# Number of spaces for indentation
indent = 2

# Environments pinned to the start of env_list
pin_envs = ["fix", "type"]

If not set they will default to values from the CLI. The example above shows the defaults (except pin_envs which defaults to an empty list).

Shared configuration file

You can place formatting settings in a standalone tox-toml-fmt.toml file instead of (or in addition to) the [tox-toml-fmt] table. This is useful for monorepos or when you want to share the same configuration across multiple projects without duplicating it in each tox.toml.

The formatter searches for tox-toml-fmt.toml starting from the directory of the file being formatted and walking up to the filesystem root. The first match wins. You can also pass an explicit path via --config:

tox-toml-fmt --config /path/to/tox-toml-fmt.toml tox.toml

The shared config file uses the same keys as the [tox-toml-fmt] table, but without the table header:

column_width = 120
indent = 2
pin_envs = ["fix", "type"]

When both a shared config file and a [tox-toml-fmt] table exist, per-file settings from the [tox-toml-fmt] table take precedence over the shared config file.

tox-toml-fmt is an opinionated formatter, much like black is for Python code. The tool intentionally provides minimal configuration options because the goal is to establish a single standard format that all tox.toml files follow.

Benefits of this approach:

  • Less time configuring tools

  • Smaller diffs when committing changes

  • Easier code reviews since formatting is never a question

While a few key options exist (column_width, indent, table_format), the tool does not expose dozens of toggles. You get what the maintainers have chosen to be the right balance of readability, consistency, and usability.

General Formatting

These rules apply uniformly across the entire tox.toml file.

String Quotes

All strings use double quotes by default. Single quotes are only used when the value contains double quotes:

# Before
description = 'Run tests'
commands = ["echo \"hello\""]

# After
description = "Run tests"
commands = ['echo "hello"']

Key Quotes

TOML keys are normalized to the simplest valid form. Keys that are valid bare keys (containing only A-Za-z0-9_-) have redundant quotes stripped. Single-quoted (literal) keys that require quoting are converted to double-quoted (basic) strings with proper escaping. This applies to all keys: table headers, key-value pairs, and inline table keys:

# Before
[env.'my-env']
"description" = "run tests"
pass_env = [{ "else" = "no" }]

# After
[env."my-env"]
description = "run tests"
pass_env = [{ else = "no" }]

Backslashes and double quotes within literal keys are escaped during conversion.

Array Formatting

Arrays are formatted based on line length, trailing comma presence, and comments:

# Short arrays stay on one line
env_list = ["py312", "py313", "lint"]

# Long arrays that exceed column_width are expanded and get a trailing comma
deps = [
    "pytest>=7",
    "pytest-cov>=4",
    "pytest-mock>=3",
]

# Trailing commas signal intent to keep multiline format
deps = [
    "pytest>=7",
]

# Arrays with comments are always multiline
deps = [
    "pytest>=7",  # testing framework
    "coverage>=7",
]

Multiline formatting rules:

An array becomes multiline when any of these conditions are met:

  1. Trailing comma present - A trailing comma signals intent to keep multiline format

  2. Exceeds column width - Arrays longer than column_width are expanded (and get a trailing comma added)

  3. Contains comments - Arrays with inline or leading comments are always multiline

String Wrapping

Long strings that exceed column_width are wrapped using TOML multiline basic strings with line-ending backslashes:

# Before
description = "A very long description string that exceeds the column width limit set for this project"

# After (with column_width = 40)
description = """\
  A very long description \
  string that exceeds the \
  column width limit set \
  for this project\
  """

Specific keys can be excluded from wrapping using skip_wrap_for_keys. Patterns support wildcards (e.g. *.commands skips wrapping for commands under any table).

Table Formatting

Sub-tables can be formatted in two styles controlled by table_format:

Short format (default, collapsed to dotted keys):

[env.test]
description = "run tests"
sub.value = 1

Long format (expanded to table headers):

[env.test]
description = "run tests"

[env.test.sub]
value = 1

Individual tables can override the default using expand_tables and collapse_tables.

Environment tables are always expanded:

Regardless of the table_format setting, [env.*] tables are never collapsed into dotted keys under [env]. Each environment always gets its own [env.NAME] table section:

# This is always the output format, even in short mode:
[env.fix]
description = "fix"

[env.test]
description = "test"

# Dotted keys under [env] are automatically expanded:
# [env]
# fix.description = "fix"    โ†’    [env.fix]
#                                  description = "fix"

Sub-tables within an environment (e.g. [env.test.sub]) still follow the table_format setting.

Comment Preservation

All comments are preserved during formatting:

  • Inline comments - Comments after a value on the same line stay with that value

  • Leading comments - Comments on the line before an entry stay with the entry below

  • Block comments - Multi-line comment blocks are preserved

Inline comment alignment:

Inline comments within arrays are aligned independently per array, based on that arrayโ€™s longest value:

# Before - comments at inconsistent positions
deps = [
  "pytest", # testing
  "pytest-cov",  # coverage
  "pytest-mock", # mocking
]

# After - comments align to longest value in this array
deps = [
  "pytest",       # testing
  "pytest-cov",   # coverage
  "pytest-mock",  # mocking
]

Table-Specific Handling

Beyond general formatting, tables have specific key ordering, value normalization, and sorting rules.

Table Ordering

Tables are reordered into a consistent structure:

  1. Root-level keys (min_version, requires, env_list, etc.)

  2. [env_run_base]

  3. [env_pkg_base]

  4. [env_base.*] sections (shared base configurations)

  5. [env.NAME] sections ordered by env_list if specified

  6. Any remaining [env.*] sections not in env_list, sorted alphabetically

  7. [env] (catch-all environment table, if present)

# env_list determines the order of [env.*] sections
env_list = ["lint", "type", "py312", "py313"]

[env_run_base]
deps = ["pytest>=7"]

[env_pkg_base]
# ...

[env_base.ci]
# shared base config

# Environments appear in env_list order:
[env.lint]
# ...

[env.type]
# ...

[env.py312]
# ...

[env.py313]
# ...

Environments not listed in env_list are placed at the end, sorted alphabetically.

Alias Normalization

Legacy INI-style key names are renamed to their modern tox 4 TOML equivalents. This applies automatically to the root table, [env_run_base], [env_pkg_base], and all [env.*] tables.

Root table aliases:

# Before
envlist = ["py312", "py313"]
minversion = "4.2"
skipsdist = true

# After
env_list = ["py312", "py313"]
min_version = "4.2"
no_package = true

Full list: envlist โ†’ env_list, toxinidir โ†’ tox_root, toxworkdir โ†’ work_dir, skipsdist โ†’ no_package, isolated_build_env โ†’ package_env, setupdir โ†’ package_root, minversion โ†’ min_version, ignore_basepython_conflict โ†’ ignore_base_python_conflict

Environment table aliases:

# Before
[env_run_base]
basepython = "python3.12"
setenv.PYTHONPATH = "src"
passenv = ["HOME"]

# After
[env_run_base]
base_python = "python3.12"
set_env.PYTHONPATH = "src"
pass_env = ["HOME"]

Full list: setenv โ†’ set_env, passenv โ†’ pass_env, envdir โ†’ env_dir, envtmpdir โ†’ env_tmp_dir, envlogdir โ†’ env_log_dir, changedir โ†’ change_dir, basepython โ†’ base_python, usedevelop โ†’ use_develop, sitepackages โ†’ system_site_packages, alwayscopy โ†’ always_copy

Root Key Ordering

Keys in the root table are reordered into a consistent sequence:

min_version โ†’ requires โ†’ provision_tox_env โ†’ env_list โ†’ labels โ†’ base โ†’ package_env โ†’ package_root โ†’ no_package โ†’ skip_missing_interpreters โ†’ ignore_base_python_conflict โ†’ work_dir โ†’ temp_dir โ†’ tox_root

# Before
env_list = ["py312", "lint"]
requires = ["tox>=4.2"]
min_version = "4.2"

# After
min_version = "4.2"
requires = ["tox>=4.2"]
env_list = ["py312", "lint"]

Environment Key Ordering

Keys within [env_run_base], [env_pkg_base], and [env.*] tables are reordered to group related settings:

factors โ†’ runner โ†’ description โ†’ base_python โ†’ default_base_python โ†’ system_site_packages โ†’ always_copy โ†’ download โ†’ virtualenv_spec โ†’ package โ†’ package_env โ†’ wheel_build_env โ†’ package_tox_env_type โ†’ package_root โ†’ skip_install โ†’ use_develop โ†’ meta_dir โ†’ pkg_dir โ†’ pip_pre โ†’ install_command โ†’ list_dependencies_command โ†’ deps โ†’ dependency_groups โ†’ pylock โ†’ constraints โ†’ constrain_package_deps โ†’ use_frozen_constraints โ†’ extras โ†’ recreate โ†’ recreate_commands โ†’ parallel_show_output โ†’ skip_missing_interpreters โ†’ fail_fast โ†’ pass_env โ†’ disallow_pass_env โ†’ set_env โ†’ change_dir โ†’ platform โ†’ args_are_paths โ†’ ignore_errors โ†’ commands_retry โ†’ ignore_outcome โ†’ extra_setup_commands โ†’ commands_pre โ†’ commands โ†’ commands_post โ†’ allowlist_externals โ†’ labels โ†’ suicide_timeout โ†’ interrupt_timeout โ†’ terminate_timeout โ†’ depends โ†’ env_dir โ†’ env_tmp_dir โ†’ env_log_dir

# Before
[env_run_base]
commands = ["pytest"]
deps = ["pytest>=7"]
description = "run tests"

# After
[env_run_base]
description = "run tests"
deps = ["pytest>=7"]
commands = ["pytest"]

requires Normalization

Dependencies in the root requires array are normalized per PEP 508 (canonical package names, consistent spacing around specifiers) and sorted alphabetically by package name:

# Before
requires = ["tox >= 4.2", "tox-uv"]

# After
requires = ["tox>=4.2", "tox-uv"]

env_list Sorting

The env_list array is sorted with a specific ordering:

  1. Pinned environments come first, in the order specified by --pin-env

  2. CPython versions (matching py3.12, py312, 3.12, etc.) sorted descending (newest first)

  3. PyPy versions (matching pypy3.10, pypy310, etc.) sorted descending

  4. Named environments (lint, type, docs, etc.) sorted alphabetically

Inline table entries (such as { product = ... }) in env_list are excluded from sorting and remain in their original positions.

Compound environment names separated by - are classified by their first recognized part:

# Before
env_list = ["lint", "py38", "py312", "docs", "py310-django"]

# After
env_list = ["py312", "py310-django", "py38", "docs", "lint"]

Use --pin-env to pin specific environments to the start:

# With --pin-env fix,type
env_list = ["fix", "type", "py313", "py312", "docs", "lint"]

use_develop Upgrade

The legacy use_develop = true setting is automatically converted to the modern package = "editable" equivalent. If use_develop = false, the key is left as-is. If a package key already exists, only the use_develop key is removed:

# Before
[env_run_base]
use_develop = true

# After
[env_run_base]
package = "editable"

Array Sorting

Certain arrays within environment tables are sorted automatically:

Sorted by canonical PEP 508 package name:

  • deps, constraints โ€” dependencies normalized and sorted by package name

Pip file references (-r, -c), editable installs (-e), local paths (./, ../, /), and entries containing tox substitution variables ({tox_root}, etc.) are preserved as-is without PEP 508 normalization, but still participate in sorting by their lowercased value:

# Before
deps = ["Pytest >= 7", "-r requirements.txt", "coverage", "-e ./my-pkg[test]"]

# After
deps = ["-e ./my-pkg[test]", "-r requirements.txt", "coverage", "pytest>=7"]

Sorted alphabetically:

  • dependency_groups, allowlist_externals, extras, labels, depends

Special handling for ``pass_env``:

Replacement objects (inline tables like { replace = "default", ... }) are pinned to the start, then string entries are sorted alphabetically:

# Before
pass_env = ["TERM", "CI", { replace = "default", ... }, "HOME"]

# After
pass_env = [{ replace = "default", ... }, "CI", "HOME", "TERM"]

Arrays NOT sorted:

  • commands, commands_pre, commands_post โ€” execution order matters

  • base_python โ€” first entry takes priority

Inline Table Key Reordering

Keys within inline tables are reordered into a consistent order based on the inline tableโ€™s type. The type is detected by the presence of a discriminator key:

  • ``replace`` โ€” replace โ†’ condition โ†’ of โ†’ env โ†’ key โ†’ name โ†’ pattern โ†’ then โ†’ else โ†’ default โ†’ extend โ†’ marker

  • ``prefix`` โ€” prefix โ†’ start โ†’ stop

  • ``product`` โ€” product โ†’ exclude

  • ``value`` โ€” value โ†’ marker

Keys not listed in the schema are appended at the end in their original order.

# Before
pass_env = [{ default = ".", replace = "default", extend = true }]
env_list = [{ exclude = ["py38-django50"], product = ["py38", "py310", "django42", "django50"] }]

# After
pass_env = [{ replace = "default", default = ".", extend = true }]
env_list = [{ product = ["py38", "py310", "django42", "django50"], exclude = ["py38-django50"] }]

This reordering applies to all inline tables in the file, including those nested inside arrays.

Other Tables

Any unrecognized tables are preserved and reordered according to standard table ordering rules. Keys within unknown tables are not reordered or normalized.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tox_toml_fmt-1.9.2.tar.gz (111.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

tox_toml_fmt-1.9.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64

tox_toml_fmt-1.9.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

tox_toml_fmt-1.9.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (5.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

tox_toml_fmt-1.9.2-cp39-abi3-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.9+Windows x86-64

tox_toml_fmt-1.9.2-cp39-abi3-musllinux_1_2_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_31_riscv64.whl (5.0 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.31+ riscv64

tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_28_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ x86-64

tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_28_aarch64.whl (4.9 MB view details)

Uploaded CPython 3.9+manylinux: glibc 2.28+ ARM64

tox_toml_fmt-1.9.2-cp39-abi3-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.9+macOS 11.0+ ARM64

tox_toml_fmt-1.9.2-cp39-abi3-macosx_10_12_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9+macOS 10.12+ x86-64

File details

Details for the file tox_toml_fmt-1.9.2.tar.gz.

File metadata

  • Download URL: tox_toml_fmt-1.9.2.tar.gz
  • Upload date:
  • Size: 111.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tox_toml_fmt-1.9.2.tar.gz
Algorithm Hash digest
SHA256 f857a3ac014b8c05d2ea058b44ee8dfd2b06f2cb3ab6a81787b9fb19155115bc
MD5 35e0e0577bdc5e92f023f01e1253133f
BLAKE2b-256 64b0826e5eac759b0e4ad970fb761083a306d24e562599cdf1a75cc5a41bd0aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2.tar.gz:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tox_toml_fmt-1.9.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6e42e306c914a7965ca3bc5633a30dbd5dee5a5441aa29812b8a7ea94d2c76e6
MD5 99f2489ea990d10896e340a16469f415
BLAKE2b-256 8b46c15957dd08262266baac61e9d235060c94a16f9b4ccedb9057f45e1638d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-pp311-pypy311_pp73-manylinux_2_28_x86_64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tox_toml_fmt-1.9.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78ea46ec37dd9232090eab3429dcfaa53eac338b699ccf6ffe3556212f6b603e
MD5 4e2f328c06358550c6e8f92ea7cebbd9
BLAKE2b-256 1d811d8d71a77f145aa82fca843a70092b405fc4793f30f60e7330202152985a

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tox_toml_fmt-1.9.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0a6bcb8bb0de84b7a5f79f3691f05b3546fab6b60c536309d6734defe902afd
MD5 19c44cc19a3ee58939fd46778de11b13
BLAKE2b-256 5712818f901bef00bcde75a5b0d194907eb294ffdeaea1404f0bd695bab910d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-cp39-abi3-win_amd64.whl.

File metadata

  • Download URL: tox_toml_fmt-1.9.2-cp39-abi3-win_amd64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.9+, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for tox_toml_fmt-1.9.2-cp39-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 65b5aa37868c299e45fedc1bcfea4cefd6bed32691dde3ff6cf03a11881189b9
MD5 01ce3a67183861fb828ab4608e3e05af
BLAKE2b-256 21b33f4adc2ff9ed7ce4664c99a84993595920639b7eb2156aee364551d9a2ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-cp39-abi3-win_amd64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for tox_toml_fmt-1.9.2-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6a8960d3a2238956533a47eab86e3fab4fcb5d7b3fd97713e801532b29f0024
MD5 5741cf84a040c34e66ba3ce13b403601
BLAKE2b-256 a02c1cf0cd3355f66becc0c5ef37bca9b392c0102e21ae1f15b45935109a3b3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-cp39-abi3-musllinux_1_2_x86_64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 f7ad9797672d7ab2bf4ee7cb028d5ac6a28da246bcc6c4cf304e254470aea1fa
MD5 9b2a0371494e06fe87502b3871af0d8f
BLAKE2b-256 71734826fc3965e2a8519460df0c785a9ef0495af1cc71467bace67b2bdfa4f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_31_riscv64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d0f5e4766bead5d18533c370c6f2fd24f8786c517e019834f573feafdc6c435
MD5 79d3cba8e82ea3d0f7dfed6a74a4c6e6
BLAKE2b-256 ee1deaceaeee6b21b9c09b445df5aff923a601a2789a9e1281247a7a6ec8f1a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_28_x86_64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6a4ed27cea10d064dc3ce3ca3fc7ba3cbec02cab654391eb6da7a8e72e1d94b8
MD5 c820b71c9e7282572b444082dfff9bfd
BLAKE2b-256 8b70f393c6efd84c529897f93a4d64b8e8a5b363b7f6ac76c124e0b1e9386a1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-cp39-abi3-manylinux_2_28_aarch64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-cp39-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for tox_toml_fmt-1.9.2-cp39-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f37428dc884f4029f456ffb9481aecfa02883d472baa1021cc855844ee8fe508
MD5 29f85de12c3d1f16f37e1a0e754ee23a
BLAKE2b-256 90cbbf6013c8a8a7376b17acf7188a52623830270a3326629ac9038e299d6aa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-cp39-abi3-macosx_11_0_arm64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file tox_toml_fmt-1.9.2-cp39-abi3-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for tox_toml_fmt-1.9.2-cp39-abi3-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7196479d6581718481c7891e12d4590c9005aa06511b4de6890fce7695bd3f35
MD5 2f8a3173771573cb07c8ca4cbb342c80
BLAKE2b-256 9229d774cb284875e58479d88f9ca4d2de19eee7e095d06ee0ba81e06f92c61d

See more details on using hashes here.

Provenance

The following attestation bundles were made for tox_toml_fmt-1.9.2-cp39-abi3-macosx_10_12_x86_64.whl:

Publisher: tox_toml_fmt_build.yaml on tox-dev/toml-fmt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page