diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9bdd89..3185341 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,15 +10,17 @@ jobs: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13', '3.14'] steps: - uses: actions/checkout@v5 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ matrix.python-version }} + allow-prereleases: true - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/tox.ini b/tox.ini index ca44b40..709c2ec 100644 --- a/tox.ini +++ b/tox.ini @@ -34,3 +34,4 @@ python = 3.11: py311 3.12: py312 3.13: py313 + 3.14: py314