mirror of
https://github.com/django/django.git
synced 2026-02-09 02:49:25 +08:00
Refs #36382 -- Fixed GDAL_VERSION comparison in gdal_tests.
Tests regression in 0d31ca9883.
This commit is contained in:
@@ -9,7 +9,7 @@ valid_drivers = (
|
||||
"MapInfo File",
|
||||
"S57",
|
||||
"DGN",
|
||||
"Memory" if GDAL_VERSION <= (3, 10) else "MEM",
|
||||
"Memory" if GDAL_VERSION[:2] <= (3, 10) else "MEM",
|
||||
"CSV",
|
||||
"GML",
|
||||
"KML",
|
||||
|
||||
Reference in New Issue
Block a user