From 1052380c6ba2d38ba674082d816170a9e1e2f865 Mon Sep 17 00:00:00 2001 From: justin-omalley Date: Wed, 8 Jul 2026 15:45:17 -0700 Subject: [PATCH 1/2] Build and upload Python 3.13 wheel --- .github/workflows/build_wheel.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index 6ba31ff49..1a909f4a1 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -7,6 +7,7 @@ jobs: matrix: python-version: - 3.12.6 + - 3.13.12 runs-on: [self-hosted, fasttext] steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 From 2e77c4559e221afeaea742474fccdbde638f9f6c Mon Sep 17 00:00:00 2001 From: justin-omalley Date: Wed, 8 Jul 2026 16:12:46 -0700 Subject: [PATCH 2/2] Pin the uv build interpreter to the matrix Python version --- .github/workflows/build_wheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index 1a909f4a1..6d30dc9ba 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -22,7 +22,7 @@ jobs: - name: Build wheel run: | rm -rf dist - uv build --out-dir dist + uv build --python ${{ matrix.python-version }} --out-dir dist - name: Check wheel run: | # These requirements were lifted from `install_requires` in `setup.py`.