Skip to content

Commit 11b1b75

Browse files
committed
CI: Use 3.12 final instead of -dev.
1 parent 76b4ac0 commit 11b1b75

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ${{ matrix.os }}
2626
strategy:
2727
matrix:
28-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12-dev"]
28+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11", "3.12"]
2929
os: [ubuntu-latest, macos-latest]
3030
steps:
3131
- uses: actions/checkout@v3
@@ -56,6 +56,7 @@ jobs:
5656
run: |
5757
python setup.py bdist_wheel
5858
python -m pip install -U -e ".[test,docs]"
59+
ls -l dist
5960
# Something in the build system isn't detecting that we're building for both,
6061
# so we're getting tagged with just x86_64. Force the universal2 tag.
6162
# (I've verified that the .so files are in fact universal, with both architectures.)
@@ -159,17 +160,6 @@ jobs:
159160
with:
160161
platforms: all
161162
- name: Build and test greenlet
162-
if: matrix.image == 'manylinux2010_x86_64'
163-
# An alternate way to do this is to run the container directly with a uses:
164-
# and then the script runs inside it. That may work better with caching.
165-
# See https://github.com/pyca/bcrypt/blob/f6b5ee2eda76d077c531362ac65e16f045cf1f29/.github/workflows/wheel-builder.yml
166-
# The 2010 image is the last one that comes with Python 2.7,
167-
# and only up through the tag 2021-02-06-3d322a5
168-
env:
169-
DOCKER_IMAGE: quay.io/pypa/${{ matrix.image }}:2021-02-06-3d322a5
170-
run: bash ./make-manylinux
171-
- name: Build and test greenlet (other)
172-
if: matrix.image != 'manylinux2010_x86_64'
173163
env:
174164
DOCKER_IMAGE: quay.io/pypa/${{ matrix.image }}
175165
run: bash ./make-manylinux

0 commit comments

Comments
 (0)