Tox environment uses git+https://github.com/Qiskit/qiskit.git
, preventing local testing with qiskit>=1.0,<2.0
requirement
#912
Labels
Environment
What is happening?
I am trying to run unit tests in development mode using
tox
on my local machine but thetox.ini
file installs Qiskit from source using,This is forcing the installation of the latest version of
qiskit=2.0
, which creates a conflict with therequirements.txt
requiringqiskit>=1.0,<2.0
. This is preventing me from performing local testing on my machine.How can we reproduce the issue?
On the terminal,
pip install -e . tox
I get the following error,
What should happen?
The
tox
command should run without any error.Any suggestions?
Override Qiskit version in the
tox.ini
file.The text was updated successfully, but these errors were encountered: