Skip to content

Commit

Permalink
Updated makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
KilianPoirier committed Jun 20, 2024
1 parent 20aa92c commit 62c8607
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ dev-install-tests:
pip install -e ./src/openqaoa-azure
pip install -e .

.PHONY: dev-install-tests
dev-install-tests:
pip install -e ./src/openqaoa-core[tests_cplex]
.PHONY: dev-install-tests-cplex
dev-install-tests-cplex:
pip install -e ./src/openqaoa-core[tests-cplex]
pip install -e ./src/openqaoa-qiskit
pip install -e ./src/openqaoa-pyquil
pip install -e ./src/openqaoa-braket
Expand Down
2 changes: 1 addition & 1 deletion src/openqaoa-core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
extras_require={
"docs": requirements_docs,
"tests": requirements_test,
"tests_cplex": requirements_test + ["cplex>=22.1.1"],
"tests-cplex": requirements_test + ["cplex>=22.1.1"],
"all": requirements_docs + requirements_test + ["cplex>=22.1.1"],
},
)

0 comments on commit 62c8607

Please sign in to comment.