https://github.com/unit8co/darts
Raw File
Tip revision: 4c9ae45fe213954114c0e017e7900987a4881918 authored by Dennis Bader on 12 April 2023, 12:05:25 UTC
update release workflow with new secrets
Tip revision: 4c9ae45
.pre-commit-config.yaml
repos:
  - repo: https://github.com/psf/black
    rev: 22.3.0
    hooks:
      - id: black-jupyter
        language_version: python3

  - repo: https://github.com/PyCQA/flake8
    rev: 4.0.1
    hooks:
    -   id: flake8
        language_version: python3

  - repo: https://github.com/pycqa/isort
    rev: 5.11.5
    hooks:
      -  id: isort

  - repo: https://github.com/asottile/pyupgrade
    rev: v2.31.0
    hooks:
    -   id: pyupgrade
        args: ['--py37-plus']
back to top