From c27fb2d05cbe005907fd93481318822f9cd4fd33 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Mon, 16 Feb 2026 22:05:09 +0000 Subject: [PATCH] docs: Correct covered Python versions As per the Github repo About summary Python 3.0 & 3.1 are not covered. I chose a different range notation to the About summary - to maintain grep-ability. --- README.md | 4 ++-- docs/index.rst | 4 ++-- pyproject.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c2c8df8..a72522d 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ [![Downloads](https://static.pepy.tech/badge/stdlib-list)](https://pepy.tech/project/stdlib-list) [![CI](https://github.com/pypi/stdlib-list/actions/workflows/ci.yml/badge.svg)](https://github.com/pypi/stdlib-list/actions/workflows/ci.yml) -This package includes lists of all of the standard libraries for Python 2.6 -through 3.14. +This package includes lists of all of the standard libraries for Python 2.6-2.7, +3.2-3.14. **IMPORTANT**: If you're on Python 3.10 or newer, you **probably don't need this library**. See [`sys.stdlib_module_names`](https://docs.python.org/3/library/sys.html#sys.stdlib_module_names) diff --git a/docs/index.rst b/docs/index.rst index 9e5d6f2..9c9f005 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -1,8 +1,8 @@ stdlib-list =========== -This package includes lists of all of the standard libraries for Python 2.6 -through 3.14. +This package includes lists of all of the standard libraries for Python 2.6-2.7, +3.2-3.14. .. note:: diff --git a/pyproject.toml b/pyproject.toml index 5681d63..34f2432 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ include = ["tests/"] [project] name = "stdlib-list" dynamic = ["version"] -description = "A list of Python Standard Libraries (2.7 through 3.14)." +description = "A list of Python Standard Libraries (2.6-2.7, 3.2-3.14)." readme = "README.md" license = { file = "LICENSE" } authors = [{ name = "Jack Maney", email = "jackmaney@gmail.com" }]