diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb798dd..58afa69 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -27,6 +28,7 @@ jobs: with: python-version: ${{ matrix.python }} cache: pip + allow-prereleases: true - name: test run: make test INSTALL_EXTRA=test diff --git a/.github/workflows/listgen.yml b/.github/workflows/listgen.yml index c63c74b..8683833 100644 --- a/.github/workflows/listgen.yml +++ b/.github/workflows/listgen.yml @@ -115,6 +115,7 @@ jobs: - "3.11" - "3.12" - "3.13" + - "3.14" runs-on: ubuntu-latest @@ -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: diff --git a/README.md b/README.md index eec317c..c2c8df8 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/docs/index.rst b/docs/index.rst index d6ec838..9e5d6f2 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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:: diff --git a/pyproject.toml b/pyproject.toml index 6ce3fdf..df13768 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.13)." +description = "A list of Python Standard Libraries (2.7 through 3.14)." readme = "README.md" license = { file = "LICENSE" } authors = [{ name = "Jack Maney", email = "jackmaney@gmail.com" }]