From: Mike Bayer Date: Mon, 1 Dec 2025 20:21:58 +0000 (-0500) Subject: add wheels for python 3.14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6a7d40ffb5bd7c1dda50ebdaf43f74829894771a;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git add wheels for python 3.14 Change-Id: Ia69c9e728e38622d643752b61b0627b3baae5089 --- diff --git a/.github/workflows/create-wheels.yaml b/.github/workflows/create-wheels.yaml index 5ca98ea257..7fb230b6d0 100644 --- a/.github/workflows/create-wheels.yaml +++ b/.github/workflows/create-wheels.yaml @@ -21,8 +21,8 @@ jobs: # emulated wheels on linux take too much time, split wheels into multiple runs python: - "cp310-* cp311-*" - - "cp312-* cp313-*" - - "cp313t-*" + - "cp312-* cp313-* cp314-*" + - "cp313t-* cp314t-*" wheel_mode: - compiled os: @@ -41,7 +41,7 @@ jobs: # create pure python build - os: ubuntu-22.04 wheel_mode: pure-python - python: "cp-313*" + python: "cp-314*" exclude: - os: "windows-2022" @@ -94,7 +94,7 @@ jobs: - name: Set up Python for twine and pure-python wheel uses: actions/setup-python@v5 with: - python-version: "3.13" + python-version: "3.14" - name: Build pure-python wheel if: ${{ matrix.wheel_mode == 'pure-python' && runner.os == 'Linux' }}