Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand All @@ -27,6 +28,7 @@ jobs:
with:
python-version: ${{ matrix.python }}
cache: pip
allow-prereleases: true

- name: test
run: make test INSTALL_EXTRA=test
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/listgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ jobs:
- "3.11"
- "3.12"
- "3.13"
- "3.14"

runs-on: ubuntu-latest

Expand All @@ -127,6 +128,7 @@ jobs:
- uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
with:
python-version: ${{ matrix.python }}
allow-prereleases: true

- name: walk modules
env:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![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.13.
through 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)
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ stdlib-list
===========

This package includes lists of all of the standard libraries for Python 2.6
through 3.13.
through 3.14.

.. note::

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ include = ["tests/"]
[project]
name = "stdlib-list"
dynamic = ["version"]
description = "A list of Python Standard Libraries (2.7 through 3.13)."
description = "A list of Python Standard Libraries (2.7 through 3.14)."
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Jack Maney", email = "[email protected]" }]
Expand Down
1 change: 1 addition & 0 deletions stdlib_list/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"3.11",
"3.12",
"3.13",
"3.14",
]

short_versions = [".".join(x.split(".")[:2]) for x in long_versions]
Expand Down
Loading