Skip to content

Commit

Permalink
Prepare 1.3.0b1 release (Qiskit#13125)
Browse files Browse the repository at this point in the history
* 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.

* Also skip 3.8 builds on 32 bit platforms

In the recently merged Qiskit#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.
  • Loading branch information
mtreinish authored Sep 11, 2024
1 parent f2ca920 commit 1179740
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Build wheels
uses: pypa/[email protected]
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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion qiskit/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.3.0b1

0 comments on commit 1179740

Please sign in to comment.