Refs #36382 -- Updated GDAL tests for Memory driver deprecation in GDAL 3.11.

Follow up to fb0d463b1f

Since GDAL 3.11 the Memory driver is deprecated with its functionality
merged into the MEM dataset driver.

https://gdal.org/en/stable/drivers/vector/memory.html
This commit is contained in:
David Smith
2026-01-08 21:38:58 +00:00
committed by Jacob Walls
parent 0239e86f38
commit 0d31ca9883

View File

@@ -9,7 +9,7 @@ valid_drivers = (
"MapInfo File",
"S57",
"DGN",
"Memory",
"Memory" if GDAL_VERSION <= (3, 10) else "MEM",
"CSV",
"GML",
"KML",