Skip to content

Commit

Permalink
Update CI dependencies (master) (minor) (#2649)
Browse files Browse the repository at this point in the history
* Update CI dependencies

* Apply pre-commit fix

From the artifact of the previous workflow run

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: geo-ghci-int[bot] <146321879+geo-ghci-int[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] and geo-ghci-int[bot] authored Dec 13, 2024
1 parent 85e346f commit a979d17
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ repos:
additional_dependencies:
- prettier@2.8.4
- repo: https://github.com/camptocamp/jsonschema-gentypes
rev: 2.8.1
rev: 2.9.3
hooks:
- id: jsonschema-gentypes
files: |-
Expand Down Expand Up @@ -109,19 +109,19 @@ repos:
- --die-on-tool-error
- --output-format=pylint
additional_dependencies:
- prospector-profile-duplicated==1.8.0 # pypi
- prospector-profile-utils==1.12.2 # pypi
- prospector-profile-duplicated==1.9.0 # pypi
- prospector-profile-utils==1.14.1 # pypi
- ruff==0.8.1 # pypi
- repo: https://github.com/sbrunner/jsonschema-validator
rev: 0.3.2
hooks:
- id: jsonschema-validator
files: ^ci/config\.yaml$
- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 39.42.4
rev: 39.64.0
hooks:
- id: renovate-config-validator
- repo: https://github.com/sbrunner/python-versions-hook
rev: 0.7.0
rev: 0.8.0
hooks:
- id: python-versions
12 changes: 6 additions & 6 deletions tilecloud_chain/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,7 @@ class Generation(TypedDict, total=False):
"""


GithubAccess = Union[Literal["push"], Literal["pull"], Literal["admin"]]
GithubAccess = Literal["push"] | Literal["pull"] | Literal["admin"]
"""
GitHub access.
Expand Down Expand Up @@ -1534,7 +1534,7 @@ class LayerMapnik(TypedDict, total=False):
"""


LayerMinResolutionSeed = Union[int, float]
LayerMinResolutionSeed = int | float
"""
layer min resolution seed.
Expand Down Expand Up @@ -1878,7 +1878,7 @@ class Logging(TypedDict, total=False):
""" Default value of the field path 'Layer cost metatile_generation_time' """


MatrixIdentifier = Union[Literal["zoom"], Literal["resolution"]]
MatrixIdentifier = Literal["zoom"] | Literal["resolution"]
"""
Matrix identifier.
Expand Down Expand Up @@ -2012,7 +2012,7 @@ class Openlayers(TypedDict, total=False):
"""


OutputFormat = Union[Literal["png"], Literal["png256"], Literal["jpeg"], Literal["grid"]]
OutputFormat = Literal["png"] | Literal["png256"] | Literal["jpeg"] | Literal["grid"]
"""
Output format.
Expand Down Expand Up @@ -2137,7 +2137,7 @@ class Provider(TypedDict, total=False):
""" Default value of the field path 'TileCloud-chain configuration queue_store' """


QueueStore = Union[Literal["redis"], Literal["sqs"], Literal["postgresql"]]
QueueStore = Literal["redis"] | Literal["sqs"] | Literal["postgresql"]
"""
Queue store.
Expand Down Expand Up @@ -2404,7 +2404,7 @@ class S3Cost(TypedDict, total=False):
"""


SentinelPort = Union[str, int]
SentinelPort = str | int
"""
Sentinel port.
Expand Down

0 comments on commit a979d17

Please sign in to comment.