Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/branchbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
with:
submodules: 'true'

- uses: "actions/setup-python@v5"
- uses: "actions/setup-python@v6"
with:
python-version: "3.13"
python-version: "3.14t"

- name: Install dependencies
run: |
Expand Down Expand Up @@ -52,9 +52,9 @@ jobs:
steps:
- uses: "actions/checkout@v5"

- uses: "actions/setup-python@v5"
- uses: "actions/setup-python@v6"
with:
python-version: "3.13"
python-version: "3.14t"

- name: Install rapidfuzz-cpp
run: |
Expand Down Expand Up @@ -96,9 +96,9 @@ jobs:
steps:
- uses: "actions/checkout@v5"

- uses: "actions/setup-python@v5"
- uses: "actions/setup-python@v6"
with:
python-version: "3.13"
python-version: "3.14t"

- name: Install rapidfuzz-cpp
run: |
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.13t", "3.14", "3.14t"]
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-15-intel, macos-14]
exclude:
- python-version: "3.10"
Expand All @@ -149,7 +149,7 @@ jobs:
- uses: "actions/checkout@v5"
with:
submodules: 'true'
- uses: "actions/setup-python@v5"
- uses: "actions/setup-python@v6"
with:
allow-prereleases: true
python-version: "${{ matrix.python-version }}"
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
python -m PyInstaller.utils.run_tests --include_only rapidfuzz.

- name: test cx_freeze packaging
if: matrix.python-version != '3.13' && matrix.python-version != '3.13t'
if: matrix.python-version != '3.13' && matrix.python-version != '3.13t' && matrix.python-version != '3.14' && matrix.python-version != '3.14t'
working-directory: tests/freezeTools
run: |
pip install cx_freeze
Expand All @@ -206,9 +206,9 @@ jobs:
repository: rapidfuzz/intel-sde
path: sde

- uses: "actions/setup-python@v5"
- uses: "actions/setup-python@v6"
with:
python-version: "3.13"
python-version: "3.14t"

- name: build
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
- uses: "actions/checkout@v5"
with:
submodules: 'true'
- uses: "actions/setup-python@v5"
- uses: "actions/setup-python@v6"
with:
python-version: "3.11"
python-version: "3.14t"

- name: Install dependencies
run: |
Expand Down
Loading