diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5c649cb..0ef5125 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,10 +15,11 @@ repos: hooks: - id: black args: [--safe] -- repo: https://gitlab.com/pycqa/flake8 +- repo: https://github.com/PyCQA/flake8 rev: 3.9.2 hooks: - id: flake8 args: ['--config=.flake8'] exclude: '^(tests/.*)|(train-examples/releases_examples/.*)$' - additional_dependencies: ['flake8-coding==1.3.2', 'flake8-copyright==0.2.2'] \ No newline at end of file + additional_dependencies: ['flake8-coding==1.3.2', 'flake8-copyright==0.2.2'] + diff --git a/backend/kangas/_version.py b/backend/kangas/_version.py index 63ae580..94edc9a 100644 --- a/backend/kangas/_version.py +++ b/backend/kangas/_version.py @@ -11,5 +11,5 @@ # All rights reserved # ###################################################### -version_info = (2, 4, 4) +version_info = (2, 4, 5) __version__ = ".".join(map(str, version_info))