Opened 5 days ago

Last modified 2 days ago

#37091 assigned New feature

Add / Confirm GDAL 3.13 Support

Reported by: David Smith Owned by: Milad Zarour
Component: GIS Version: 6.0
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: yes
Easy pickings: no UI/UX: no

Description (last modified by Jacob Walls)

GDAL 3.13 was released on 8 May 2026. https://github.com/OSGeo/gdal/releases/tag/v3.13.0

Change History (5)

comment:1 by Jacob Walls, 5 days ago

Description: modified (diff)
Triage Stage: UnreviewedAccepted

comment:2 by Milad Zarour, 5 days ago

Hi
I’d like to look into this and check what’s needed for GDAL 3.13 support.

comment:3 by Milad Zarour, 5 days ago

Has patch: set

comment:4 by Milad Zarour, 5 days ago

Owner: set to Milad Zarour
Status: newassigned

Opened PR 21249: https://github.com/django/django/pull/21249

Updated GDAL library discovery for GDAL 3.13 and documented GDAL 3.13 support.

Tests:

  • python -m black --check django/contrib/gis/gdal/libgdal.py
  • python -m flake8 django/contrib/gis/gdal/libgdal.py
  • git diff --check
  • Verified the targeted GDAL test package against GDAL 3.13.0 in a disposable Docker environment:
    • docker run --rm -v d:/Repos/django:/src -w /src -e PYTHONPATH=/src:/src/tests -e DJANGO_SETTINGS_MODULE=test_sqlite ghcr.io/osgeo/gdal:ubuntu-small-3.13.0 bash -lc "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq && apt-get install -y -qq python3-pip >/dev/null && python3 -m pip install --quiet --break-system-packages --root-user-action=ignore asgiref\>=3.9.1 sqlparse\>=0.5.0 && gdalinfo --version && python3 -m unittest discover -s tests/gis_tests/gdal_tests -t . -v"
    • Result: GDAL 3.13.0 "Iowa City", released 2026/05/04
    • Result: Ran 144 tests in 1.085s - OK
Last edited 5 days ago by Milad Zarour (previous) (diff)

comment:5 by Jacob Walls, 2 days ago

Patch needs improvement: set
Note: See TracTickets for help on using tickets.
Back to Top