Skip to content
Open
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
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,39 @@
default_stages: [pre-commit]
repos:
- repo: https://github.com/compilerla/conventional-pre-commit
rev: v4.3.0
rev: v4.4.0
hooks:
- id: conventional-pre-commit
stages: [commit-msg]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.14.3'
rev: 'v0.15.15'
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
# TODO: Switch back to upstream docformatter
# after https://github.com/PyCQA/docformatter/issues/289 is fixed
- repo: https://github.com/PyCQA/docformatter
rev: v1.7.7
rev: v1.7.8
# rev: v1.7.5
hooks:
- id: docformatter
additional_dependencies: [tomli]
args: [--in-place, --config, ./pyproject.toml]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.18.2
rev: v2.1.0
hooks:
- id: mypy
additional_dependencies: ['types-requests', 'types-six']
- repo: https://github.com/pdm-project/pdm
rev: 2.26.1
rev: 2.27.0
hooks:
- id: pdm-lock-check
- id: pdm-export
args: ["-o", "requirements.txt", "--without-hashes", "-G", "cli", "-G", "index-generation", "-dG:all"]
files: ^pdm.lock$
stages: [manual]
- repo: https://github.com/kynan/nbstripout
rev: 0.8.1
rev: 0.9.1
hooks:
- id: nbstripout
- repo: https://github.com/pre-commit/pre-commit-hooks
Expand All @@ -50,7 +50,7 @@ repos:
args: ['--maxkb=1000']
- id: detect-private-key
- repo: https://github.com/dosisod/refurb
rev: v2.2.0
rev: v2.3.1
hooks:
- id: refurb
args: ["--python-version", "3.10", "--format", "github"]
Expand Down
8 changes: 3 additions & 5 deletions rq_geo_toolkit/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
"""
Set of function reused in other geospatial libraries.

Author: Kamil Raczycki
License: MIT
Author: Kamil Raczycki License: MIT

This library contains set of functionalities that are reused
in other libraries from the Kraina AI organization like
QuackOSM and OvertureMaestro.
This library contains set of functionalities that are reused in other libraries from the Kraina AI
organization like QuackOSM and OvertureMaestro.
"""

__version__ = "2026.4.0"
Loading