-
Notifications
You must be signed in to change notification settings - Fork 378
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Drop support for Python 3.6 Now that Qiskit Aer 0.10.0 has been released that Qiskit no longer supports python 3.6 (in the lead up to adding support for python 3.10). This commit officially drops the support for python 3.6 and makes python 3.7 required to install qiskit-aer. It also removes all the ci jobs still using 3.6 both for testing and building wheels. * Add release note * Fix syntax error in job configuration * Update releasenotes/notes/drop-python36-61553302523fa240.yaml Co-authored-by: Jake Lishman <jake@binhbar.com> * Unify cibuildwheel configuration to pyproject.toml This commit removes all the environment variable usage for default configuration of cibuildwheel and switches to use the pyproject.toml to centralize the configuration for all the jobs. Environment variables are still used for per job custom overrides which don't really fit in the configuration of the pyproject.toml (mainly cross-build overrides and GPU configuration). * Fix toml inline table syntax error * Add musllinux wheels to skip list too Newer versions of cibuildwheel support building musllinux wheels for musl libc based linux distros, such as alpine linux, in addition to manylinux wheels (which are not compatible with musl libc based linux distros and only work with glibc distros). The musllinux build environments are different and not centos based so builds fail in them. Since we're not supporting musl platforms in qiskit-aer we don't need to attempt to build wheels for that platform. This commit adds musllinux builds to the skip list in the common cibuildwheel configuration accordingly. Co-authored-by: Jake Lishman <jake@binhbar.com> Co-authored-by: Hiroshi Horii <hhorii@users.noreply.github.com>
- Loading branch information
1 parent
9f78243
commit 8c400ca
Showing
6 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
upgrade: | ||
- | | ||
Running qiskit-aer with Python 3.6 is no longer supported. Python >= 3.7 | ||
is now required to install and run qiskit-aer. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters