-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt to latest Qiskit version (#185)
## Description Fixes updates to latest Qiskit version, see cda-tum/mqt-core#471 ## Checklist: <!--- This checklist serves as a reminder of a couple of things that ensure your pull request will be merged swiftly. --> - [x] The pull request only contains commits that are related to it. - [x] I have added appropriate tests and documentation. - [x] I have made sure that all CI jobs on GitHub pass. - [x] The pull request introduces no new warnings and follows the project's style guidelines. --------- Co-authored-by: Lukas Burgholzer <[email protected]>
- Loading branch information
1 parent
f69a4e8
commit ea440ad
Showing
4 changed files
with
24 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,16 +25,19 @@ jobs: | |
with: | ||
fetch-depth: 0 | ||
submodules: recursive | ||
- if: runner.os == 'macOS' | ||
name: Install flint | ||
run: brew install flint | ||
- if: matrix.runs-on != 'ubuntu-latest' | ||
name: Setup ccache | ||
uses: Chocobo1/setup-ccache-action@v1 | ||
with: | ||
prepend_symlinks_to_path: false | ||
windows_compile_environment: msvc | ||
override_cache_key: wheels-${{ matrix.runs-on }} | ||
- if: runner.os == 'macOS' | ||
name: Install flint | ||
run: | | ||
brew install gmp mpfr ntl | ||
git clone --branch v2.9.0 --depth 1 https://github.com/flintlib/flint2.git | ||
cd flint2 && ./configure && make -j 3 && make install | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
- name: Verify clean directory | ||
|
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