From bb6b0e7196ece0bfa96b37c51524839cf0277228 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Wed, 11 Sep 2024 15:11:42 -0400 Subject: [PATCH] DNM: Retrigger 1.3.0b1 build with corrected abi3 tags During the recent 1.3.0b1 pre-release the wheel jobs failed to build because of a mismatched abi3 tag version between the actual binary and the package metadata. This commit corrects the package tag to match and also retriggers the release --- .github/workflows/wheels.yml | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index d3cb464bf8cc..60966c6ee29c 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -2,8 +2,7 @@ name: Wheel Builds on: push: - tags: - - '*' + branches: ["retrigger-ci-that-failed"] jobs: build_wheels: name: Build wheels diff --git a/setup.py b/setup.py index 61168050547c..ad6d1f8ead86 100644 --- a/setup.py +++ b/setup.py @@ -51,5 +51,5 @@ features=features, ) ], - options={"bdist_wheel": {"py_limited_api": "cp38"}}, + options={"bdist_wheel": {"py_limited_api": "cp39"}}, )