Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
repos:
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.5.5
rev: v0.7.2
hooks:
- id: ruff
args: [--fix, --show-fixes, --output-format, grouped]
Expand All @@ -24,7 +24,7 @@ repos:
args: ['-c', '.yamllint']
# Common pre-commit checks
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-added-large-files # We don't want huge files. (Cut down test data!)
args: ['--maxkb=2000']
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/osgeo/gdal:ubuntu-small-3.9.1 AS builder
FROM ghcr.io/osgeo/gdal:ubuntu-small-3.10.0 AS builder

ENV DEBIAN_FRONTEND=noninteractive \
LC_ALL=C.UTF-8 \
Expand All @@ -20,7 +20,7 @@ WORKDIR /build

RUN python3 -m pip --disable-pip-version-check -q wheel --no-binary psycopg2 psycopg2

FROM ghcr.io/osgeo/gdal:ubuntu-small-3.9.1
FROM ghcr.io/osgeo/gdal:ubuntu-small-3.10.0

ENV DEBIAN_FRONTEND=noninteractive \
LC_ALL=C.UTF-8 \
Expand Down
2 changes: 1 addition & 1 deletion docs/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The following configuration values are used internally by Datacube-explorer:

.. py:data:: CACHE_TYPE

Enable Flask-Cache https://pythonhosted.org/Flask-Caching/#configuring-flask-caching settings.
Enable Flask-Cache https://flask-caching.readthedocs.io/en/latest/index.html#configuring-flask-caching settings.

Default: ``NullCache``

Expand Down
Loading