Skip to content

Commit

Permalink
add --no-dependencies into qiskit-terra setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mickahell committed Jul 11, 2023
1 parent 75cb025 commit da9a125
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ecosystem/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ def python_dev_tests(
# qiskit through github via deps configuration
additional_commands = [
"pip uninstall -y qiskit-terra",
f"pip install git+https://github.com/Qiskit/{package}.git@main",
f"pip install --no-dependencies git+https://github.com/Qiskit/{package}.git@main",
]
return self._run_python_tests(
run_name=run_name,
Expand Down Expand Up @@ -575,7 +575,7 @@ def python_stable_tests(
_run_python_tests def
"""
additional_commands = [
"pip install --upgrade --force-reinstall qiskit-terra",
"pip install --upgrade --no-dependencies --force-reinstall qiskit-terra",
]
return self._run_python_tests(
run_name=run_name,
Expand Down

0 comments on commit da9a125

Please sign in to comment.