Skip to main content

isort - isort your imports, so you don't have to.


PyPI version Python Version CI Code coverage Status License Downloads Code style: black Imports: isort DeepSource


Read Latest Documentation - Browse GitHub Code Repository


isort your imports, so you don't have to.

isort is a Python utility / library to sort imports alphabetically and automatically separate into sections and by type. It provides a command line utility, Python library and plugins for various editors to quickly sort all your imports. It requires Python 3.10+ to run but supports formatting Python 2 code too.

Example Usage

Before isort:

from my_lib import Object

import os

from my_lib import Object3

from my_lib import Object2

import sys

from third_party import lib15, lib1, lib2, lib3, lib4, lib5, lib6, lib7, lib8, lib9, lib10, lib11, lib12, lib13, lib14

import sys

from __future__ import absolute_import

from third_party import lib3

print("Hey")
print("yo")

After isort:

from __future__ import absolute_import

import os
import sys

from third_party import (lib1, lib2, lib3, lib4, lib5, lib6, lib7, lib8,
                         lib9, lib10, lib11, lib12, lib13, lib14, lib15)

from my_lib import Object, Object2, Object3

print("Hey")
print("yo")

Installing isort

Installing isort is as simple as:

pip install isort

Using isort

From the command line:

To run on specific files:

isort mypythonfile.py mypythonfile2.py

To apply recursively:

isort .

If globstar is enabled, isort . is equivalent to:

isort **/*.py

To view proposed changes without applying them:

isort mypythonfile.py --diff

Finally, to atomically run isort against a project, only applying changes if they don't introduce syntax errors:

isort --atomic .

(Note: this is disabled by default, as it prevents isort from running against code written using a different version of Python.)

From within Python:

import isort

isort.file("pythonfile.py")

or:

import isort

sorted_code = isort.code("import b\nimport a\n")

Installing isort's for your preferred text editor

Several plugins have been written that enable to use isort from within a variety of text-editors. You can find a full list of them on the isort wiki. Additionally, I will enthusiastically accept pull requests that include plugins for other text editors and add documentation for them as I am notified.

Multi line output modes

You will notice above the "multi_line_output" setting. This setting defines how from imports wrap when they extend past the line_length limit and has 12 possible settings.

Indentation

To change the how constant indents appear - simply change the indent property with the following accepted formats:

  • Number of spaces you would like. For example: 4 would cause standard 4 space indentation.
  • Tab
  • A verbatim string with quotes around it.

For example:

"    "

is equivalent to 4.

For the import styles that use parentheses, you can control whether or not to include a trailing comma after the last import with the include_trailing_comma option (defaults to False).

Intelligently Balanced Multi-line Imports

As of isort 3.1.0 support for balanced multi-line imports has been added. With this enabled isort will dynamically change the import length to the one that produces the most balanced grid, while staying below the maximum import length defined.

Example:

from __future__ import (absolute_import, division,
                        print_function, unicode_literals)

Will be produced instead of:

from __future__ import (absolute_import, division, print_function,
                        unicode_literals)

To enable this set balanced_wrapping to True in your config or pass the -e option into the command line utility.

Custom Sections and Ordering

isort provides configuration options to change almost every aspect of how imports are organized, ordered, or grouped together in sections.

Click here for an overview of all these options.

Skip processing of imports (outside of configuration)

To make isort ignore a single import simply add a comment at the end of the import line containing the text isort:skip:

import module  # isort:skip

or:

from xyz import (abc,  # isort:skip
                 yo,
                 hey)

To make isort skip an entire file simply add isort:skip_file to the module's doc string:

""" my_module.py
    Best module ever

   isort:skip_file
"""

import b
import a

Adding or removing an import from multiple files

isort can be ran or configured to add / remove imports automatically.

See a complete guide here.

Using isort to verify code

The --check-only option

isort can also be used to verify that code is correctly formatted by running it with -c. Any files that contain incorrectly sorted and/or formatted imports will be outputted to stderr.

isort **/*.py -c -v

SUCCESS: /home/timothy/Projects/Open_Source/isort/isort_kate_plugin.py Everything Looks Good!
ERROR: /home/timothy/Projects/Open_Source/isort/isort/isort.py Imports are incorrectly sorted.

One great place this can be used is with a pre-commit git hook, such as this one by @acdha:

https://gist.github.com/acdha/8717683

This can help to ensure a certain level of code quality throughout a project.

Git hook

isort provides a hook function that can be integrated into your Git pre-commit script to check Python code before committing.

More info here.

Spread the word

Imports: isort

Place this badge at the top of your repository to let others know your project uses isort.

For README.md:

[![Imports: isort](https://img.shields.io/badge/imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://isort.readthedocs.io/)

Or README.rst:

.. image:: https://img.shields.io/badge/imports-isort-%231674b1?style=flat&labelColor=ef8336
    :target: https://isort.readthedocs.io/

Security contact information

To report a security vulnerability, please use the Tidelift security contact. Tidelift will coordinate the fix and disclosure.

Why isort?

isort simply stands for import sort. It was originally called "sortImports" however I got tired of typing the extra characters and came to the realization camelCase is not pythonic.

I wrote isort because in an organization I used to work in the manager came in one day and decided all code must have alphabetically sorted imports. The code base was huge - and he meant for us to do it by hand. However, being a programmer - I'm too lazy to spend 8 hours mindlessly performing a function, but not too lazy to spend 16 hours automating it. I was given permission to open source sortImports and here we are :)


Get professionally supported isort with the Tidelift Subscription

Professional support for isort is available as part of the Tidelift Subscription. Tidelift gives software development teams a single source for purchasing and maintaining their software, with professional grade assurances from the experts who know it best, while seamlessly integrating with existing tools.


Thanks and I hope you find isort useful!

~Timothy Crosley

Download files

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

Source Distribution

isort-9.0.1.tar.gz (667.7 kB view details)

Uploaded Source

Built Distributions

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

isort-9.0.1-py3-none-any.whl (103.5 kB view details)

Uploaded Python 3

isort-9.0.1-cp315-cp315t-win_amd64.whl (918.3 kB view details)

Uploaded CPython 3.15tWindows x86-64

isort-9.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

isort-9.0.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

isort-9.0.1-cp315-cp315t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

isort-9.0.1-cp315-cp315-win_amd64.whl (894.5 kB view details)

Uploaded CPython 3.15Windows x86-64

isort-9.0.1-cp315-cp315-pyemscripten_2026_5_wasm32.whl (457.1 kB view details)

Uploaded CPython 3.15PyEmscripten 2026.5 wasm32

isort-9.0.1-cp315-cp315-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

isort-9.0.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

isort-9.0.1-cp315-cp315-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

isort-9.0.1-cp314-cp314t-win_amd64.whl (919.6 kB view details)

Uploaded CPython 3.14tWindows x86-64

isort-9.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

isort-9.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

isort-9.0.1-cp314-cp314t-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

isort-9.0.1-cp314-cp314-win_amd64.whl (894.6 kB view details)

Uploaded CPython 3.14Windows x86-64

isort-9.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl (457.0 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

isort-9.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

isort-9.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

isort-9.0.1-cp314-cp314-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

isort-9.0.1-cp313-cp313-win_amd64.whl (874.8 kB view details)

Uploaded CPython 3.13Windows x86-64

isort-9.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl (457.7 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

isort-9.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

isort-9.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

isort-9.0.1-cp313-cp313-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

isort-9.0.1-cp312-cp312-win_amd64.whl (871.3 kB view details)

Uploaded CPython 3.12Windows x86-64

isort-9.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

isort-9.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

isort-9.0.1-cp312-cp312-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

isort-9.0.1-cp311-cp311-win_amd64.whl (864.9 kB view details)

Uploaded CPython 3.11Windows x86-64

isort-9.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

isort-9.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

isort-9.0.1-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

isort-9.0.1-cp310-cp310-win_amd64.whl (864.0 kB view details)

Uploaded CPython 3.10Windows x86-64

isort-9.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

isort-9.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

isort-9.0.1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file isort-9.0.1.tar.gz.

File metadata

  • Download URL: isort-9.0.1.tar.gz
  • Upload date:
  • Size: 667.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1.tar.gz
Algorithm Hash digest
SHA256 ba23db109e3e93ef1999f7209a651214994cd807801addd16ac485982eb4edd7
MD5 7b9a164be62be8b195d4013302ca848d
BLAKE2b-256 e643067e17bfa10b6486b408d5294105ac894149a9abb94b338568b1f53a73c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1.tar.gz:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-py3-none-any.whl.

File metadata

  • Download URL: isort-9.0.1-py3-none-any.whl
  • Upload date:
  • Size: 103.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 5aac7263b7a7f9f647f94fb6df2761ff5b60a7168eb492ff39dd30443207fa19
MD5 9788da015c90009c5c6d629ee65a1a35
BLAKE2b-256 af6e4ec84f19b008864656b9f158bad006aa6346e754694aff47a7fa9ee65a19

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-py3-none-any.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: isort-9.0.1-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 918.3 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 8f490acc182253d07071cc8255b57a281855e2e027b929a89eaa7c797f7b213e
MD5 33e7bd63c3ca2e3d644c9553fa86b9eb
BLAKE2b-256 385c17fedc2bee564bb13b50ed3cb2ce7d66dd8e09184fb45d7a263ebaaaa97e

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp315-cp315t-win_amd64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23d3b6657763f9be1b15bb9664b016abfce34849d6215a46a42af7945d4acd68
MD5 dd842099ca7d8d6c15696fcf899aadd0
BLAKE2b-256 3443f9f456c223ba34293ab28f736f00e26875b26913f24451e5a2938a8c4e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cdf765657edb2bcccbb1b20d26e710acbcb27379c0a407c6cb376e5619059a7b
MD5 fa37fb52473d55e49ec46778820017cd
BLAKE2b-256 329b9e80dee125b3d1208fb89afa380cae6fdfac660ad682eb0139a8fd8d790a

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fb33e0c0f9f87821acf6d82c83f0a0c7e54680fdf3fe4131409d2b95901f00a
MD5 75fe2cc86834c2948e41b9c6e40b5ccf
BLAKE2b-256 e5275c17d4c8239a33a876f91e52426cc0d3fc75eb8438f34c40f403998057ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: isort-9.0.1-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 894.5 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 1b8d6c836fb83232f5f4c1c037d332caf743bb24dca63167bad9174ae13e150e
MD5 cb8d6f070f2ab684c717b5a3fab77f39
BLAKE2b-256 65603c73139b71b7031caf54aa098bc589b18374533b5f96f31c541b36112896

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp315-cp315-win_amd64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp315-cp315-pyemscripten_2026_5_wasm32.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp315-cp315-pyemscripten_2026_5_wasm32.whl
Algorithm Hash digest
SHA256 cc9814ce2ee42c17007d822455e4db55e32e589808ecfc2665d51c848d0bb30a
MD5 63b7c6e5f6c30c45eb20c7c471737d1e
BLAKE2b-256 a709b575e1837f3b182c97f937cf39cb55b3942f44dedfec4303403e4aa9bbd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp315-cp315-pyemscripten_2026_5_wasm32.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 825c05d2d63a1b9c608c352503c10b6411a3c6e12bcacc97b306774ee379786f
MD5 f3fc04ea553578af85b0e1a2e791770d
BLAKE2b-256 5e4a5a46b814d7fa49fc778e65a6703e4bb4d60149e01574afd7366b5ac7a1dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 930879e4cfab3264f1d7346abeec10726b5382dc4be9f4251c25ec7fa057926b
MD5 088ce8696a3395796b2d71f91946492a
BLAKE2b-256 11209f22f2574d94cc2b86f7c1764a186843ed19e7215666b57b10935335614f

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5022b332ac91ccb39dc28bb206d5ae96ae7f8d45e710b072cb039b2fcda6602a
MD5 35162126b9e17e4dd6b2769be5e7b69e
BLAKE2b-256 72d89963610d22fa55cbbd3c141a350f7011dd1023be9d3ba06212053c3639c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: isort-9.0.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 919.6 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fd326823ddbe338357ba1823b7f96481d4421d54c83ebd43c92f1b51314a24ae
MD5 66186b22006a474a4330155e1ae72023
BLAKE2b-256 58d0d77ec7d1c648a0b92ea6a8da3591a342550404af98a338106278a872ea1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3a2697ebcb54b51af4833de44447dbf31ddf081c5f163772092d21c0267483b
MD5 3d8e9c7f2f8525194243a158565502d2
BLAKE2b-256 e5d4af84d711cda084ddcb7a01a3d6a2608542c16ae7d418d99169b7deb775a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2525606f62742fc4ed9f8ca89043b9522ac3e6f9c9892e6cb16f4870d937f38
MD5 6ffb44be31a9ef120f936436aedc099e
BLAKE2b-256 966f915effa62cdcdc757bd0c567ee4d611c7a73ce7da097c820b3b2f340c2f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e72a7063570f1d740f0284c7ae5739dc34c6a2d9f1049b13027a5bdadb56682
MD5 a7ecede346b63c68c7f978a2de9f2b06
BLAKE2b-256 9bd7e5e9e477ff7ec9f75b4c07b25aef10814775200c1e90bc9acbb788def54a

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: isort-9.0.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 894.6 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2057236a764f31c78dac78f7343057621fcc2fd40461ce61061f34fd09066f46
MD5 b866f693832605da13b697a4cc871293
BLAKE2b-256 b8f2b9cf816c8dfd5d9066b65a2f738f8d03fb0f6001bcffa3d436cfdbe1b421

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp314-cp314-win_amd64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 89ebbcdbdd9d66cc14909bbac36acb9db29f37325606113c9f270242f8a1f896
MD5 8b6422471db2947dab3ebd0474409de2
BLAKE2b-256 8c26e3db1ae5d5fbe9e2dff0c6a0b2b9dda07a742ede20f8fbc7d78d5d73f472

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99b7bc28b1f05f7e3267629043a99c6c479a750df3689327a10324e396827f94
MD5 77704501d390131b6302c4b09f44c9fe
BLAKE2b-256 536c621969c0cde272b7a183484589cc9f28132775d78fd708c231fd292c7abd

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 873cf1b6371d41e2a74d57d7c0176d311822f0415441abf8251ad074c9fe4a66
MD5 61d788964b62e52911272bcd63f4806b
BLAKE2b-256 2bb604d74c7c42b9af1c0d47f34a79722dbbcff71bae3765c9250376ebd44ec5

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ea5f505b152fedd2b990b39d8b76108a48b355da874025aad4982e8ceeb0f3d
MD5 f5cd128d48c9bbf55347ba395167e370
BLAKE2b-256 db42d75a674a7fcbbf4374cd358b8529535d3c59e0ab6acc164b6862acb95058

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: isort-9.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 874.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7281cdf538f682b8d75fa44bcdad1b299036bbc440855f7d61412b3b85d5727d
MD5 771a78791eb59f22c4b99746886f45ad
BLAKE2b-256 53d6a776ea214de5403f038b182e1d5fd2211d0cee41f2c62ac9f2f9a0ecc463

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp313-cp313-win_amd64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 5832683294dd61c59d00cd043a68d42f6ecd7dc7d04b73ac777f7f90a534d6ae
MD5 764edd78d958471b25f96854ceea7fe0
BLAKE2b-256 52baf5efd28563bc751792a7a1f64ae73db57dcbfa0563dc3e0cbbd825a48252

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 466b0c3f156a21c10edefba697e641666bc26ffb0122bf08b42caa3d464c20aa
MD5 1866328e2c6d74145cc11f2f8b412208
BLAKE2b-256 4778a92b09507565f8bd27eb72a7df3ba59a1ea0a5baacbf155c587d0be51a13

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3727eb33a9759649346481cf2a9287d656a170c31ed7c105856f9c6f5b539756
MD5 59713b9eee8915b4c9cc82af55b2fd5c
BLAKE2b-256 d7bb7025f3606b42f7db084fa234d61462a73443af166ecf7c1a0e8e3b448433

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 67680927f739d4b48d67d8b7430faa92c95b02fb6075ca0351c6446214f6c7bb
MD5 6526535d11938da133ea308f481161f9
BLAKE2b-256 e165aba682b6d0853de85f5bb5c18f0269d2980760783f5144dfcded6b8a1f14

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: isort-9.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 871.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 182918b730772292d33564a6ac5b201ca2bb79a8ad2ac77e7681ecc0f19a8f84
MD5 3e783542f18eb0c9cd72e9c5089e0073
BLAKE2b-256 1f1728a06514565129fbb225138045323fb2876aaf871cf77f5976e62e5624bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp312-cp312-win_amd64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f6877ed17054eae153d686270678b11c1f6cb79433a1c07453140cccbaf7cc1d
MD5 4131cafe30630fe22a220dd4ad81e4ea
BLAKE2b-256 49164f791073e6f91f8e9442ed7eb370886a0f0a52c9dadba540fcd24b4c2074

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a75d4c21d8b93345a2743b96cc75c6f085aa89ddbaadd6edd5e9765be12ab77
MD5 dfb4c36fa6d2558e668663c139dbb088
BLAKE2b-256 653eef6f9247dd0b7faad0450883808c94b94f22fc254524b5b05b5c6c4f94b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3ce022ccedf63aa5fc77bd0e926b8561a1476c9709d7cedf63abd7967772aac
MD5 b579e5a9216c1467dc79304e3f2eca31
BLAKE2b-256 b1bd7221ab6fa6912487953334a9953dcc11816f8568e8d1fec07cda0bc01d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: isort-9.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 864.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1878b5165b0db434c0c62373a81a111e1afffb373f20e57bd2020ebdbaa36808
MD5 57789f4f6a4cf4a1704d460bd3be5545
BLAKE2b-256 f91ff6a0c7d968322b23d248ec5ae3262bcae9ee57926cace0d1f99dfdb50b22

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp311-cp311-win_amd64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 771d5b7385292a0b2106229b792b8750954bbaf231e0475b1f53f1dd43e00936
MD5 13fdbbc3ff8b87be1932707d779a1d4b
BLAKE2b-256 5f23e05939b0f1254488476929b998464ce69205f769de64beacaedeb47e1a45

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fb7d55156a1f766a2b097165524f07be61ececa41a71ca33d24a00777f79a829
MD5 69a768def4be3c97b5da734985c1ffbd
BLAKE2b-256 b092bf89a5b76464685256bdcc866705d5cd5a07de5babef02a4519af55cb3ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dd4664ad009552bc4c9f464bd31190d0f04132412ee4d9392145fdf58d92127
MD5 97acdfb3b05b6a5ef4137b21bc51d889
BLAKE2b-256 2079f73cc50a8749f17246372fe7d9398a8e0195cf5fb8b9955f59baa3c6e597

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: isort-9.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 864.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for isort-9.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77f4b984ab3badbbf2363c849b92465e0f69e8fc54d1a932c87532a559269397
MD5 49fced29a2ffab1d2f4189e02f670280
BLAKE2b-256 57e303c082f9a643bfdebd7a930c8b8a4077284eccea64b8d974ec29cfb2f34a

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp310-cp310-win_amd64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c08b2989a16a46e97af652266ee8af617eb5b1bfa3195cc921cc0dc66b485d10
MD5 9950c7cb45f0a37f286436156a5dd65d
BLAKE2b-256 a8721c58ce806fac5817e239795f452fba314b9f874823c8b7cf3b726194cf7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98d48ad47f705ac7f046cfaab0a11320ed0b903243ccb850347229414a364d28
MD5 f0c4fc8ca7a68cdfc0c5e50215236b74
BLAKE2b-256 866f4cf28199d975ffd99b9986cd07a57c224bfaa490d0f34a22c3ae3a6f86d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on PyCQA/isort

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

File details

Details for the file isort-9.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for isort-9.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f41e40246742970db0227a2afb2d7da872bddd888826cf182c0916993fadb43
MD5 523263c557ac5a6816eafd6a1b3c3af6
BLAKE2b-256 4ab4fb7ca366a5352410787d71d19c039895d30123f521d6abfcb72e67773833

See more details on using hashes here.

Provenance

The following attestation bundles were made for isort-9.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on PyCQA/isort

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

Release history Release notifications | RSS feed

This release

9.0.1 This release

37 files

9.0.0

37 files

8.0.1

2 files

8.0.0

2 files

7.0.0

2 files

6.1.0

2 files

6.0.1

2 files

6.0.0

2 files

5.13.2

2 files

5.13.1

2 files

5.13.0

2 files

5.12.0

2 files

5.11.5

2 files

5.11.4

2 files

5.11.3

2 files

5.11.2

2 files

5.11.1

2 files

5.11.0

2 files

5.10.1

2 files

5.10.0

2 files

5.9.3

2 files

5.9.2

2 files

5.9.1

2 files

5.9.0

2 files

5.8.0

2 files

5.7.0

2 files

5.6.4

2 files

5.6.3

2 files

5.6.2

2 files

5.6.1

2 files

5.6.0

2 files

5.5.5

2 files

5.5.4

2 files

5.5.3

2 files

5.5.2

2 files

5.5.1

2 files

5.5.0

2 files

5.4.2

2 files

5.4.1

2 files

5.4.0

2 files

5.3.2

2 files

5.3.1

2 files

5.3.0

2 files

5.2.2

2 files

5.2.1

2 files

5.2.0

2 files

5.1.4

2 files

5.1.3

2 files

5.1.2

2 files

5.1.1

2 files

5.1.0

2 files

5.0.9

2 files

5.0.8

2 files

5.0.7

2 files

5.0.6

2 files

5.0.5

2 files

5.0.4

2 files

5.0.3

2 files

5.0.2

2 files

5.0.1

2 files

5.0.0

2 files

4.3.21

2 files

4.3.20

2 files

4.3.19

2 files

4.3.18

2 files

4.3.17

2 files

4.3.16

2 files

4.3.15

2 files

4.3.14

2 files

4.3.13

2 files

4.3.12

2 files

4.3.11

2 files

4.3.10

2 files

4.3.9

2 files

4.3.8

2 files

4.3.7

2 files

4.3.6

2 files

4.3.5

2 files

4.3.4

3 files

4.3.3

3 files

4.3.2

2 files

4.3.1

3 files

4.3.0

2 files

4.2.15

2 files

4.2.14

2 files

4.2.13

2 files

4.2.12

2 files

4.2.11

1 file

4.2.9

2 files

4.2.8

2 files

4.2.5

2 files

4.2.4

2 files

4.2.3

2 files

4.2.2

2 files

4.2.1

2 files

4.2.0

2 files

4.1.2

2 files

4.1.1

2 files

4.1.0

2 files

4.0.0

2 files

3.9.6

2 files

3.9.5

2 files

3.9.4

1 file

3.9.3

2 files

3.9.2

2 files

3.9.1

2 files

3.9.0

2 files

3.8.3

2 files

3.8.2

1 file

3.8.1

2 files

3.8.0

2 files

3.7.2

2 files

3.7.1

2 files

3.7.0

2 files

3.6.2

2 files

3.6.1

2 files

3.6.0

2 files

3.5.0

2 files

3.4.2

2 files

3.4.1

2 files

3.4.0

2 files

3.3.1

2 files

3.3.0

2 files

3.2.0

2 files

3.1.2

2 files

3.1.1

2 files

3.1.0

2 files

3.0.0

2 files

2.6.3

2 files

2.6.2

2 files

2.6.1

2 files

2.6.0

2 files

2.5.0

2 files

2.4.1

2 files

2.4.0

2 files

2.3.0

2 files

2.2.1

2 files

2.2.0

2 files

2.1.0

2 files

2.0.1

2 files

2.0.0

2 files

1.3.2

2 files

1.3.1

2 files

1.3.0

2 files

1.2.5

2 files

1.2.3

1 file

1.2.2

1 file

1.2.0

1 file

1.0.1

1 file

1.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page