This crashes the setup if numpy is not installed by pip before cartopy.
|
try: |
|
import numpy as np |
|
except ImportError: |
|
raise ImportError('NumPy 1.10+ is required to install cartopy.') |
Given that it is already in the requirements this block of code should be removed?