Skip to content

Commit c84d14e

Browse files
AA-Turnergithub-actions[bot]woodruffw
authored
Prepare for Python 3.14 support (#164)
Co-authored-by: AA-Turner <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: William Woodruff <[email protected]>
1 parent 7c46682 commit c84d14e

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
- "3.11"
1818
- "3.12"
1919
- "3.13"
20+
- "3.14"
2021
runs-on: ubuntu-latest
2122
steps:
2223
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -27,6 +28,7 @@ jobs:
2728
with:
2829
python-version: ${{ matrix.python }}
2930
cache: pip
31+
allow-prereleases: true
3032

3133
- name: test
3234
run: make test INSTALL_EXTRA=test

.github/workflows/listgen.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ jobs:
115115
- "3.11"
116116
- "3.12"
117117
- "3.13"
118+
- "3.14"
118119

119120
runs-on: ubuntu-latest
120121

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

131133
- name: walk modules
132134
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![CI](https://github.com/pypi/stdlib-list/actions/workflows/ci.yml/badge.svg)](https://github.com/pypi/stdlib-list/actions/workflows/ci.yml)
66

77
This package includes lists of all of the standard libraries for Python 2.6
8-
through 3.13.
8+
through 3.14.
99

1010
**IMPORTANT**: If you're on Python 3.10 or newer, you **probably don't need this library**.
1111
See [`sys.stdlib_module_names`](https://docs.python.org/3/library/sys.html#sys.stdlib_module_names)

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ stdlib-list
22
===========
33

44
This package includes lists of all of the standard libraries for Python 2.6
5-
through 3.13.
5+
through 3.14.
66

77
.. note::
88

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include = ["tests/"]
1111
[project]
1212
name = "stdlib-list"
1313
dynamic = ["version"]
14-
description = "A list of Python Standard Libraries (2.7 through 3.13)."
14+
description = "A list of Python Standard Libraries (2.7 through 3.14)."
1515
readme = "README.md"
1616
license = { file = "LICENSE" }
1717
authors = [{ name = "Jack Maney", email = "[email protected]" }]

0 commit comments

Comments
 (0)