Skip to content
Snippets Groups Projects
Commit 0a9ce6f7 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Fix #69 "bob.io.image is a test dependency but it is imported"

parent 6add1e4b
No related branches found
No related tags found
1 merge request!72Improve the installation instructions
...@@ -12,7 +12,10 @@ import numpy ...@@ -12,7 +12,10 @@ import numpy
import bob.core import bob.core
import bob.io.base import bob.io.base
import bob.io.image try:
import bob.io.image
except ImportError:
pass
def command_line_arguments(command_line_parameters): def command_line_arguments(command_line_parameters):
......
...@@ -2,3 +2,4 @@ bob.db.atnt ...@@ -2,3 +2,4 @@ bob.db.atnt
bob.io.image bob.io.image
matplotlib matplotlib
gridtk gridtk
nose
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment