From f0828dadd17b51392971106efa7de6f1da28119e Mon Sep 17 00:00:00 2001 From: Bo Bayles Date: Tue, 2 Dec 2025 14:17:01 -0600 Subject: [PATCH] Update tested Python versions --- .github/workflows/python-app.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 0db4cff..55b4b43 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -8,12 +8,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.8"] + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "pypy-3.10"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} - name: Install dependencies @@ -31,19 +31,19 @@ jobs: run: | flake8 . - name: Build docs with sphinx - if: "matrix.python-version == '3.8'" + if: "matrix.python-version == '3.10'" run: | pip install -r docs/requirements.txt sphinx-build -W -b html docs docs/_build/html - name: Build packages - if: "matrix.python-version == '3.8'" + if: "matrix.python-version == '3.10'" run: | pip install -U twine wheel python setup.py sdist bdist_wheel twine check dist/* - name: Upload packages - if: "matrix.python-version == '3.8'" - uses: actions/upload-artifact@v3 + if: "matrix.python-version == '3.10'" + uses: actions/upload-artifact@v4 with: name: python-pure-cdb-packages path: dist/*