Skip to content

Commit aa04988

Browse files
committed
Directly require qiskit-terra instead of qiskit
1 parent e5cd346 commit aa04988

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/ci.yml

-3
Original file line numberDiff line numberDiff line change
@@ -138,14 +138,12 @@ jobs:
138138
apt-get update && apt-get install -y python3-dev python3-pip python3-setuptools python3-wheel
139139
python3-numpy python3-scipy python3-matplotlib python3-requests python3-networkx
140140
python3-pytest python3-pytest-cov python3-flaky
141-
libopenblas-dev liblapack-dev
142141
--no-install-recommends
143142
144143
- name: Fix environment variables for compilation with Clang
145144
run: |
146145
ld_flags=$(python3 -c "import sysconfig; print(' '.join(sysconfig.get_config_var('LDSHARED').split()[1:]))")
147146
echo "LDSHARED=clang" >> $GITHUB_ENV
148-
echo "CFLAGS=-fPIC" >> $GITHUB_ENV
149147
echo "LDFLAGS=$ld_flags" >> $GITHUB_ENV
150148
151149
- name: Prepare Python env
@@ -193,7 +191,6 @@ jobs:
193191
apt-get update && apt-get install -y python3-dev python3-pip python3-setuptools python3-wheel
194192
python3-numpy python3-scipy python3-matplotlib python3-requests python3-networkx
195193
python3-pytest python3-pytest-cov python3-flaky
196-
libopenblas-dev liblapack-dev
197194
--no-install-recommends
198195
199196
- name: Prepare Python env

setup.cfg

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ install_requires =
4343
braket = boto3
4444

4545
# OpenQASM support
46-
qiskit = qiskit >= 0.14
47-
qasm = qiskit >= 0.14
46+
qiskit = qiskit-terra >= 0.11
47+
qasm = qiskit-terra >= 0.11
4848
pyparsing = pyparsing
4949

5050
# ==============================================================================

0 commit comments

Comments
 (0)