diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f5906c97..da7349f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,13 +13,13 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ["3.11", "3.12", "3.13"] + python-version: ["3.11", "3.12", "3.13", "3.14"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} diff --git a/docs/getting_started.rst b/docs/getting_started.rst index e8803e7c..9cdd2eea 100644 --- a/docs/getting_started.rst +++ b/docs/getting_started.rst @@ -8,8 +8,8 @@ Head over to `Python.org`_ for instructions. Python version support ---------------------- -Officially Python 3.11, 3.12, and 3.13. We aim to support the three most -recent major versions. +Officially Python 3.11, 3.12, 3.13 and 3.14. We aim to support the +most recent major versions. OS support ---------- diff --git a/pyproject.toml b/pyproject.toml index 1b226bc9..134f213c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dependencies = [ "numpy",