Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
12 of 473 committers (2.5%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (17.4%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
The uncompromising Python code formatter
Basic Info
- Host: GitHub
- Owner: psf
- License: mit
- Language: Python
- Default Branch: main
- Homepage: https://black.readthedocs.io/en/stable/
- Size: 6.98 MB
Statistics
- Stars: 40,865
- Watchers: 235
- Forks: 2,616
- Open Issues: 360
- Releases: 46
Topics
Metadata Files
README.md
The Uncompromising Code Formatter
“Any color you like.”
Black is the uncompromising Python code formatter. By using it, you agree to cede
control over minutiae of hand-formatting. In return, Black gives you speed,
determinism, and freedom from pycodestyle nagging about formatting. You will save time
and mental energy for more important matters.
Blackened code looks the same regardless of the project you're reading. Formatting becomes transparent after a while and you can focus on the content instead.
Black makes code review faster by producing the smallest diffs possible.
Try it out now using the Black Playground. Watch the PyCon 2019 talk to learn more.
Read the documentation on ReadTheDocs!
Installation and usage
Installation
Black can be installed by running pip install black. It requires Python 3.9+ to run.
If you want to format Jupyter Notebooks, install with pip install "black[jupyter]".
If you can't wait for the latest hotness and want to install from GitHub, use:
pip install git+https://github.com/psf/black
Usage
To get started right away with sensible defaults:
sh
black {source_file_or_directory}
You can run Black as a package if running it as a script doesn't work:
sh
python -m black {source_file_or_directory}
Further information can be found in our docs:
Black is already successfully used by many projects, small and big. Black has a comprehensive test suite, with efficient parallel tests, and our own auto formatting and parallel Continuous Integration runner. Now that we have become stable, you should not expect large formatting changes in the future. Stylistic changes will mostly be responses to bug reports and support for new Python syntax. For more information please refer to The Black Code Style.
Also, as a safety measure which slows down processing, Black will check that the
reformatted code still produces a valid AST that is effectively equivalent to the
original (see the
Pragmatism
section for details). If you're feeling confident, use --fast.
The Black code style
Black is a PEP 8 compliant opinionated formatter. Black reformats entire files in place. Style configuration options are deliberately limited and rarely added. It doesn't take previous formatting into account (see Pragmatism for exceptions).
Our documentation covers the current Black code style, but planned changes to it are also documented. They're both worth taking a look at:
Changes to the Black code style are bound by the Stability Policy:
Please refer to this document before submitting an issue. What seems like a bug might be intended behaviour.
Pragmatism
Early versions of Black used to be absolutist in some respects. They took after its initial author. This was fine at the time as it made the implementation simpler and there were not many users anyway. Not many edge cases were reported. As a mature tool, Black does make some exceptions to rules it otherwise holds.
Please refer to this document before submitting an issue just like with the document above. What seems like a bug might be intended behaviour.
Configuration
Black is able to read project-specific default values for its command line options
from a pyproject.toml file. This is especially useful for specifying custom
--include and --exclude/--force-exclude/--extend-exclude patterns for your
project.
You can find more details in our documentation:
And if you're looking for more general configuration documentation:
Pro-tip: If you're asking yourself "Do I need to configure anything?" the answer is "No". Black is all about sensible defaults. Applying those defaults will have your code in compliance with many other Black formatted projects.
Used by
The following notable open-source projects trust Black with enforcing a consistent code style: pytest, tox, Pyramid, Django, Django Channels, Hypothesis, attrs, SQLAlchemy, Poetry, PyPA applications (Warehouse, Bandersnatch, Pipenv, virtualenv), pandas, Pillow, Twisted, LocalStack, every Datadog Agent Integration, Home Assistant, Zulip, Kedro, OpenOA, FLORIS, ORBIT, WOMBAT, and many more.
The following organizations use Black: Dropbox, KeepTruckin, Lyft, Mozilla, Quora, Duolingo, QuantumBlack, Tesla, Archer Aviation.
Are we missing anyone? Let us know.
Testimonials
Mike Bayer, author of SQLAlchemy:
I can't think of any single tool in my entire programming career that has given me a bigger productivity increase by its introduction. I can now do refactorings in about 1% of the keystrokes that it would have taken me previously when we had no way for code to format itself.
Dusty Phillips, writer:
Black is opinionated so you don't have to be.
Hynek Schlawack, creator of attrs, core developer of
Twisted and CPython:
An auto-formatter that doesn't suck is all I want for Xmas!
Carl Meyer, Django core developer:
At least the name is good.
Kenneth Reitz, creator of requests
and pipenv:
This vastly improves the formatting of our code. Thanks a ton!
Show your style
Use the badge in your project's README.md:
md
[](https://github.com/psf/black)
Using the badge in README.rst:
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://github.com/psf/black
License
MIT
Contributing
Welcome! Happy to see you willing to make the project better. You can get started by reading this:
You can also take a look at the rest of the contributing docs or talk with the developers:
Change log
The log has become rather long. It moved to its own file.
See CHANGES.
Authors
The author list is quite long nowadays, so it lives in its own file.
See AUTHORS.md
Code of Conduct
Everyone participating in the Black project, and in particular in the issue tracker, pull requests, and social media activity, is expected to treat other people with respect and more generally to follow the guidelines articulated in the Python Community Code of Conduct.
At the same time, humor is encouraged. In fact, basic familiarity with Monty Python's Flying Circus is expected. We are not savages.
And if you really need to slap somebody, do it with a fish while dancing.
Owner
- Name: Python Software Foundation
- Login: psf
- Kind: organization
- Website: https://python.org/psf/github
- Twitter: ThePSF
- Repositories: 40
- Profile: https://github.com/psf
Citation (CITATION.cff)
cff-version: 1.2.0
title: "Black: The uncompromising Python code formatter"
message: >-
If you use this software, please cite it using the metadata from this file.
type: software
authors:
- family-names: Langa
given-names: Łukasz
- name: "contributors to Black"
repository-code: "https://github.com/psf/black"
url: "https://black.readthedocs.io/en/stable/"
abstract: >-
Black is the uncompromising Python code formatter. By using it, you agree to cede
control over minutiae of hand-formatting. In return, Black gives you speed,
determinism, and freedom from pycodestyle nagging about formatting. You will save time
and mental energy for more important matters.
Blackened code looks the same regardless of the project you're reading. Formatting
becomes transparent after a while and you can focus on the content instead.
Black makes code review faster by producing the smallest diffs possible.
license: MIT
Committers
Last synced: 5 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Łukasz Langa | l****z@l****l | 372 |
| Jelle Zijlstra | j****a@g****m | 193 |
| Richard Si | 6****6 | 131 |
| dependabot[bot] | 4****] | 120 |
| Shantanu | 1****a | 104 |
| Zsolt Dollenstein | z****l@g****m | 78 |
| Cooper Lees | me@c****m | 70 |
| Hugo van Kemenade | h****k | 51 |
| Yilei "Dolee" Yang | y****g@g****m | 42 |
| Batuhan Taskaya | i****l@g****m | 25 |
| Felix Hildén | f****n@g****m | 25 |
| GiGaGon | 1****n | 24 |
| Marco Edward Gorelli | m****i@p****m | 21 |
| James Addison | j****y@j****t | 16 |
| cobalt | 6****2 | 14 |
| Bryan Bugyi | b****4@g****m | 14 |
| Michael J. Sullivan | s****y@m****t | 12 |
| Jon Dufresne | j****e@g****m | 11 |
| Tushar Sadhwani | t****0@g****m | 11 |
| pre-commit-ci[bot] | 6****] | 11 |
| Henri Holopainen | h****n@g****m | 10 |
| Joe Young | 8****t | 10 |
| rdrll | 1****l | 9 |
| Anthony Sottile | a****e@u****u | 9 |
| cobalt | 6****7 | 8 |
| Nipunn Koorapati | n****3@g****m | 8 |
| Sagi Shadur | s****2@g****m | 7 |
| Alex Waygood | A****d@G****m | 7 |
| Yurii Karabas | 1****o@g****m | 6 |
| Shivansh-007 | s****7@o****m | 6 |
| and 443 more... | ||
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 4 months ago
All Time
- Total issues: 687
- Total pull requests: 874
- Average time to close issues: 8 months
- Average time to close pull requests: 24 days
- Total issue authors: 538
- Total pull request authors: 189
- Average comments per issue: 4.15
- Average comments per pull request: 1.6
- Merged pull requests: 605
- Bot issues: 0
- Bot pull requests: 131
Past Year
- Issues: 110
- Pull requests: 312
- Average time to close issues: 9 days
- Average time to close pull requests: 8 days
- Issue authors: 89
- Pull request authors: 59
- Average comments per issue: 1.52
- Average comments per pull request: 0.84
- Merged pull requests: 168
- Bot issues: 0
- Bot pull requests: 40
Top Authors
Issue Authors
- JelleZijlstra (31)
- hauntsaninja (14)
- 15r10nk (13)
- yilei (13)
- MichaReiser (11)
- cooperlees (8)
- MeGaGiGaGon (6)
- Zac-HD (5)
- st-pasha (5)
- konstin (5)
- sumezulike (3)
- ambv (3)
- Conchylicultor (3)
- felix-hilden (3)
- KotlinIsland (3)
Pull Request Authors
- dependabot[bot] (115)
- hauntsaninja (106)
- JelleZijlstra (99)
- MeGaGiGaGon (49)
- abdeliibrahim (26)
- RedGuy12 (20)
- tusharsadhwani (18)
- yilei (18)
- cooperlees (17)
- cobaltt7 (17)
- pre-commit-ci[bot] (16)
- AleksMat (10)
- Pedro-Muller29 (10)
- henriholopainen (9)
- ichard26 (9)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 59
-
Total downloads:
- pypi 74,595,264 last-month
- Total docker downloads: 3,659,163,538
-
Total dependent packages: 9,954
(may contain duplicates) -
Total dependent repositories: 123,643
(may contain duplicates) - Total versions: 523
- Total maintainers: 30
- Total advisories: 1
pypi.org: black
The uncompromising code formatter.
- Documentation: https://black.readthedocs.io/
- License: MIT License
-
Latest release: 25.1.0
published 11 months ago
Rankings
Maintainers (5)
github actions: psf/black
The uncompromising Python code formatter.
- Homepage: https://black.readthedocs.io/en/stable/
- License: mit
-
Latest release: 24.10.0
published about 1 year ago
Rankings
pypi.org: gym
Gym: A universal API for reinforcement learning environments
- Homepage: https://www.gymlibrary.dev/
- Documentation: https://gym.readthedocs.io/
- License: MIT
-
Latest release: 0.26.2
published about 3 years ago
Rankings
Maintainers (9)
alpine-v3.18: black-zsh-completion
Zsh completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.3.0-r1
published over 2 years ago
Rankings
Maintainers (1)
alpine-v3.18: black-pyc
Precompiled Python bytecode for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.3.0-r1
published over 2 years ago
Rankings
Maintainers (1)
alpine-v3.18: black-bash-completion
Bash completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.3.0-r1
published over 2 years ago
Rankings
Maintainers (1)
alpine-v3.18: black-fish-completion
Fish completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.3.0-r1
published over 2 years ago
Rankings
Maintainers (1)
alpine-v3.18: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.3.0-r1
published over 2 years ago
Rankings
Maintainers (1)
conda-forge.org: black
Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 22.10.0
published about 3 years ago
Rankings
spack.io: py-black
Black is the uncompromising Python code formatter. By using it, you agree to cede control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting.
- Homepage: https://github.com/psf/black
- License: []
-
Latest release: 25.1.0
published 9 months ago
Rankings
Maintainers (1)
alpine-edge: black-pyc
Precompiled Python bytecode for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
alpine-edge: black-zsh-completion
Zsh completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
alpine-edge: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
alpine-edge: black-fish-completion
Fish completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
alpine-edge: black-bash-completion
Bash completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
anaconda.org: black
Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0
published 6 months ago
Rankings
alpine-v3.13: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 20.8_beta1-r0
published over 5 years ago
Rankings
Maintainers (1)
alpine-v3.14: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 21.6_beta0-r0
published over 4 years ago
Rankings
Maintainers (1)
alpine-v3.15: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 21.11_beta1-r0
published about 4 years ago
Rankings
Maintainers (1)
pypi.org: black-but-with-tabs-instead-of-spaces
The --compromising code formatter.
- Homepage: https://github.com/psf/black
- Documentation: https://black-but-with-tabs-instead-of-spaces.readthedocs.io/
- License: MIT
-
Latest release: 19.11
published over 5 years ago
Rankings
Maintainers (1)
alpine-v3.16: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 22.3.0-r0
published over 3 years ago
Rankings
Maintainers (1)
alpine-v3.17: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 22.8.0-r0
published over 3 years ago
Rankings
Maintainers (1)
pypi.org: black-with-tabs
The somewhat compromised code formatter.
- Homepage: https://github.com/psf/black
- Documentation: https://black-with-tabs.readthedocs.io/
- License: MIT License
-
Latest release: 22.10.0
published about 3 years ago
Rankings
Maintainers (2)
conda-forge.org: black-jupyter
Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 22.10.0
published about 3 years ago
Rankings
pypi.org: blacksin
The uncompromising code formatter.
- Homepage: https://github.com/psf/black
- Documentation: https://blacksin.readthedocs.io/
- License: MIT
-
Latest release: 20.8b1.post0
published about 5 years ago
Rankings
Maintainers (1)
pypi.org: blackest
The uncompromising code formatter.
- Documentation: https://black.readthedocs.io/
- License: MIT License
-
Latest release: 24.10.0
published 12 months ago
Rankings
Maintainers (1)
pypi.org: pydantic-argparse-builder
Build ArgumentParser from pydantic model.
- Documentation: https://pydantic-argparse-builder.readthedocs.io/
- License: Apache-2.0
-
Latest release: 0.3.1
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: pyalert
a framework to help you stay on top of what data is flowing through your code.
- Documentation: https://pyalert.readthedocs.io/
- License: mit
- Status: removed
-
Latest release: 0.0.2
published almost 3 years ago
Rankings
Maintainers (1)
conda-forge.org: blackd
Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 22.10.0
published about 3 years ago
Rankings
pypi.org: keygen-licensing-tools
Python tools for Keygen.sh licensing
- Documentation: https://keygen-licensing-tools.readthedocs.io/
- License: Other/Proprietary License
-
Latest release: 0.3.1
published almost 4 years ago
Rankings
Maintainers (1)
conda-forge.org: black-colorama
Black is the uncompromising Python code formatter. By using it, you agree to cease control over minutiae of hand-formatting. In return, Black gives you speed, determinism, and freedom from pycodestyle nagging about formatting. You will save time and mental energy for more important matters.
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 22.10.0
published about 3 years ago
Rankings
pypi.org: nero
The uncompromising code formatter. Single Quotes version.
- Homepage: https://github.com/mixmastamyk/nero
- Documentation: https://nero.readthedocs.io/
- License: MIT
-
Latest release: 1.0.20220202
published almost 4 years ago
Rankings
Maintainers (1)
pypi.org: monochromatic
The uncompromising* code formatter.
- Documentation: https://black.readthedocs.io/
- License: MIT License
-
Latest release: 0.0.4
published 7 months ago
Rankings
Maintainers (1)
pypi.org: api-utils
API utils simplify life when creating or consuming APIs
- Homepage: https://pypi.org/project/api-utils/
- Documentation: https://api-utils.readthedocs.io/
- License: GNU General Public License v3 (GPLv3)
-
Latest release: 2019.9.18
published over 6 years ago
Rankings
Maintainers (1)
pypi.org: tingetone
ANSI color formatting for output in terminal
- Documentation: https://tingetone.readthedocs.io/
- License: MIT
-
Latest release: 0.0.1
published about 1 year ago
Rankings
Maintainers (1)
pypi.org: nh-rs2v-dataset
- Documentation: https://nh-rs2v-dataset.readthedocs.io/
- License: Apache-2.0
Rankings
pypi.org: coinpaprika-async-client
An asynchronous library for interacting with the Coinpaprika.com API, written with httpx in Python.
- Documentation: https://coinpaprika-async-client.readthedocs.io/
- License: mit
-
Latest release: 3.1.0
published over 1 year ago
Rankings
pypi.org: council-scrapers
- Documentation: https://council-scrapers.readthedocs.io/
- License: MIT
-
Latest release: 0.1.0
published almost 2 years ago
Rankings
Maintainers (1)
pypi.org: pyoma2
Software for Structural Health Monitoring with Advanced Signal Processing Techniques
- Documentation: https://pyoma2.readthedocs.io/
- License: MIT
-
Latest release: 0.1.0
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.20: black-pyc
Precompiled Python bytecode for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.4.2-r0
published over 1 year ago
Rankings
Maintainers (1)
alpine-v3.20: black-bash-completion
Bash completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.4.2-r0
published over 1 year ago
Rankings
Maintainers (1)
alpine-v3.19: black-fish-completion
Fish completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.12.0-r0
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.19: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.12.0-r0
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.19: black-zsh-completion
Zsh completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.12.0-r0
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.20: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.4.2-r0
published over 1 year ago
Rankings
Maintainers (1)
alpine-v3.20: black-fish-completion
Fish completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.4.2-r0
published over 1 year ago
Rankings
Maintainers (1)
alpine-v3.21: black-zsh-completion
Zsh completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.10.0-r0
published about 1 year ago
Rankings
Maintainers (1)
alpine-v3.22: black-zsh-completion
Zsh completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
alpine-v3.20: black-zsh-completion
Zsh completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.4.2-r0
published over 1 year ago
Rankings
Maintainers (1)
alpine-v3.22: black-fish-completion
Fish completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
alpine-v3.22: black-bash-completion
Bash completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
alpine-v3.22: black-pyc
Precompiled Python bytecode for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
alpine-v3.21: black-pyc
Precompiled Python bytecode for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.10.0-r0
published about 1 year ago
Rankings
Maintainers (1)
alpine-v3.22: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 25.1.0-r0
published 10 months ago
Rankings
Maintainers (1)
alpine-v3.19: black-bash-completion
Bash completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.12.0-r0
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.21: black
The uncompromising Python code formatter
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.10.0-r0
published about 1 year ago
Rankings
Maintainers (1)
alpine-v3.21: black-bash-completion
Bash completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.10.0-r0
published about 1 year ago
Rankings
Maintainers (1)
alpine-v3.19: black-pyc
Precompiled Python bytecode for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 23.12.0-r0
published almost 2 years ago
Rankings
Maintainers (1)
alpine-v3.21: black-fish-completion
Fish completions for black
- Homepage: https://github.com/psf/black
- License: MIT
-
Latest release: 24.10.0-r0
published about 1 year ago
