You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test_crispr.py can fail if an older version of sbol2 is installed in the python interpreter. The way CRISPR_example.py is executed it runs in the python interpreter in a temporary directory. This means it doesn't have access to the module through the sbol2 directory in the current working directory.
When run with a virtual environment that has sbol2 installed in development mode (pip install -e .) everything will be fine. And on Travis it works because the current module is being installed in a clean environment.
This may not be much of a problem going forward, once we reach some stability. But it may be a problem for some developers depending on how their development environment is set up.
The text was updated successfully, but these errors were encountered:
test_crispr.py can fail if an older version of
sbol2
is installed in the python interpreter. The wayCRISPR_example.py
is executed it runs in the python interpreter in a temporary directory. This means it doesn't have access to the module through thesbol2
directory in the current working directory.When run with a virtual environment that has sbol2 installed in development mode (
pip install -e .
) everything will be fine. And on Travis it works because the current module is being installed in a clean environment.This may not be much of a problem going forward, once we reach some stability. But it may be a problem for some developers depending on how their development environment is set up.
The text was updated successfully, but these errors were encountered: