Use low_memory=False while reading the file to skip dtype detection.
df = pd.read_csv('somefile.csv', low_memory=False)
Define dtypes while reading the file to force column to be read as an object.
df = pandas.read_csv('somefile.csv', dtype={'phone': object})