From 104935e0e6cecfa64f8eca4baa523d17ceff4fd1 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 10 Sep 2024 14:20:20 -0400 Subject: [PATCH 1/2] Prepare 1.3.0b1 release This commit changes the version strings from 1.3.0 to 1.3.0b1 in preparation for tagging the 1.3.0b1 pre-release. After we publish the 1.3.0b1 tag we should switch the version number back to 1.3.0 to continue developing the 1.3.0 release series as we approach the actual release. --- docs/conf.py | 2 +- qiskit/VERSION.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 1ebd77749b41..277276df42a4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,7 +32,7 @@ # The short X.Y version version = "1.3" # The full version, including alpha/beta/rc tags -release = "1.3.0" +release = "1.3.0b1" language = "en" diff --git a/qiskit/VERSION.txt b/qiskit/VERSION.txt index f0bb29e76388..94bfba8ed4ed 100644 --- a/qiskit/VERSION.txt +++ b/qiskit/VERSION.txt @@ -1 +1 @@ -1.3.0 +1.3.0b1 From 89e1d575d037cc259c453627991d65e510055571 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Wed, 11 Sep 2024 05:44:25 -0400 Subject: [PATCH 2/2] Also skip 3.8 builds on 32 bit platforms In the recently merged #12910 the minimum Python version was raised to 3.9. As part of this the cibuildwheel config was updated to skip 38 uilds since they wont work anymore. However that PR missed that there was an additional skip config in for the 32 bit builds in the job definition. This commit adds the missing skip so the 32bit wheel builds will work as well. --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 3314bae05d5b..d3cb464bf8cc 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -60,7 +60,7 @@ jobs: - name: Build wheels uses: pypa/cibuildwheel@v2.19.2 env: - CIBW_SKIP: 'pp* cp36-* cp37-* *musllinux* *amd64 *x86_64' + CIBW_SKIP: 'pp* cp36-* cp37-* cp38-* *musllinux* *amd64 *x86_64' - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl