使用geopandas将json文件转换成shp文件时候遇到错误

def json_to_shp(file_name):
file = os.path.splitext(file_name)[0]
data = geopandas.read_file(file_name)
data.to_file(file, driver="ESRI Shapefile", encoding='utf-8')
报错:
fiona.errors.CRSError: Invalid input to create CRS: GEOGCRS["WGS 84",DATUM["World Geodetic System 1984",ELLIPSOID["WGS 84",6378137,298.257223563,LENGTHUNIT["metre",1]]],PRIMEM["Greenwic
h",0,ANGLEUNIT["degree",0.0174532925199433]],CS[ellipsoidal,2],AXIS["geodetic latitude (Lat)",north,ORDER[1],ANGLEUNIT["degree",0.0174532925199433]],AXIS["geodetic longitude (Lon)",east
,ORDER[2],ANGLEUNIT["degree",0.0174532925199433]],USAGE[SCOPE["Horizontal component of 3D system."],AREA["World."],BBOX[-90,-180,90,180]],ID["EPSG",4326]]

之前可以正常转换,今天出错了 有知道原因的么