Skip to content

Commit

Permalink
Merge pull request #11538 from camptocamp/update-2-9
Browse files Browse the repository at this point in the history
The Update ngeo 2.9 workflow shouldn't run on pull request.
  • Loading branch information
sbrunner authored Nov 15, 2024
2 parents 56b4872 + b88f97d commit f8cf1d4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ngeo-2-9.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
repository_dispatch:
types:
- ngeo_2.9_updated
pull_request:

jobs:
main:
Expand Down
4 changes: 3 additions & 1 deletion admin/c2cgeoportal_admin/schemas/dimensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@
from c2cgeoportal_commons.models.main import Dimension


def dimensions_schema_node(prop: InstrumentedAttribute[Any]) -> colander.SequenceSchema:
def dimensions_schema_node(
prop: InstrumentedAttribute[Any], # pylint: disable=unsubscriptable-object
) -> colander.SequenceSchema:
"""Get the scheme of the dimensions."""
return colander.SequenceSchema(
GeoFormSchemaNode(Dimension, name="dimension", widget=MappingWidget(template="dimension")),
Expand Down
4 changes: 3 additions & 1 deletion admin/c2cgeoportal_admin/schemas/restriction_areas.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@
from c2cgeoportal_commons.models.main import RestrictionArea


def restrictionareas_schema_node(prop: InstrumentedAttribute[Any]) -> colander.SequenceSchema:
def restrictionareas_schema_node(
prop: InstrumentedAttribute[Any], # pylint: disable=unsubscriptable-object
) -> colander.SequenceSchema:
"""Get the schema of a restriction area."""
return colander.SequenceSchema(
GeoFormManyToManySchemaNode(RestrictionArea, None),
Expand Down
2 changes: 2 additions & 0 deletions ci/dpkg-versions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1363,6 +1363,8 @@ camptocamp/geomapfish-tools:latest:
ubuntu_24_04/libicu74: 74.2-1ubuntu3.1
ubuntu_24_04/libidn2-0: 2.3.7-2build1
ubuntu_24_04/libimagequant0: 2.18.0-1build1
ubuntu_24_04/libio-pty-perl: 1:1.20-1build2
ubuntu_24_04/libipc-run-perl: 20231003.0-1
ubuntu_24_04/libisl23: 0.26-3build1
ubuntu_24_04/libitm1: 14-20240412-0ubuntu1
ubuntu_24_04/libjansson4: 2.14-2build2
Expand Down

0 comments on commit f8cf1d4

Please sign in to comment.