diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 58b9c47fd..0bb51c968 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.13'] + python-version: ['3.14'] steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ca88dee33..7f6e3e315 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.9', '3.13'] + python-version: ['3.9', '3.14'] steps: - uses: actions/checkout@v4 @@ -56,7 +56,7 @@ jobs: strategy: matrix: - python-version: ['3.13'] + python-version: ['3.14'] steps: - uses: actions/checkout@v4 diff --git a/CHANGES b/CHANGES index 7da604715..4972f331b 100644 --- a/CHANGES +++ b/CHANGES @@ -21,6 +21,10 @@ $ pipx install --suffix=@next 'vcspull' --pip-args '\--pre' --force +### Development + +- Add Python 3.14 to test matrix, trove classifiers (#469) + ## vcspull v1.35.0 (2025-09-04) ### Development diff --git a/pyproject.toml b/pyproject.toml index b35dedd5a..00d102cad 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Utilities", "Topic :: System :: Shells", ]