Closed
Description
In the pvlib.clearsky.lookup_linke_turbidity() function, you have the following error handling:
try:
import tables
except ImportError:
raise ImportError('The Linke turbidity lookup table requires tables. '
'You can still use clearsky.ineichen if you '
'supply your own turbidities.')
Unfortunately, the tables module has not been included as a dependency of the pvlib package.