mirror of
https://github.com/django/django.git
synced 2026-02-08 18:39:28 +08:00
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:
@@ -9,7 +9,7 @@ valid_drivers = (
|
||||
"MapInfo File",
|
||||
"S57",
|
||||
"DGN",
|
||||
"Memory",
|
||||
"Memory" if GDAL_VERSION <= (3, 10) else "MEM",
|
||||
"CSV",
|
||||
"GML",
|
||||
"KML",
|
||||
|
||||
Reference in New Issue
Block a user