Skip to content
Snippets Groups Projects
Select Git revision
  • ee61228ecfe9377e349a9069e6132db1a9253afa
  • main default protected
  • bump-boto3
  • bump-mdutils
  • bump-mlflow-skinny
  • bump-torchvision
  • bump-torchaudio
  • bump-torch
  • bump-numpy
  • bump-matplotlib
  • bump-wandb
  • bump-nltk
  • bump-pandas
  • bump-PyYAML
  • bump-lxml
  • bump-scipy
  • bump-tensorboard
  • bump-mkdocs-material
  • bump-mkdocstrings-python
  • bump-albumentations
  • support-nested
  • 0.2.2rc4
  • 0.2.2rc3
  • 0.2.2rc2
  • 0.2.2rc1
  • attention-exp
  • 0.2.2b2
  • 0.2.2b1
  • 0.2.2a2
  • 0.2.2a1
  • 0.2.1
  • 0.2.0
  • 0.2.0rc12
  • 0.2.0rc11
  • 0.2.0rc10
  • 0.2.0rc9
  • 0.2.0rc8
  • 0.2.0rc7
  • 0.2.0rc6
  • 0.2.0rc5
  • 0.2.0rc4
41 results

mlflow-requirements.txt

Blame
  • This project manages its dependencies using pip. Learn more
    .pre-commit-config.yaml 1.37 KiB
    repos:
      - repo: https://github.com/astral-sh/ruff-pre-commit
        # Ruff version.
        rev: v0.2.2
        hooks:
          # Run the linter.
          - id: ruff
            args: [--fix, --exit-non-zero-on-fix]
          # Run the formatter.
          - id: ruff-format
      - repo: https://github.com/pre-commit/pre-commit-hooks
        rev: v4.5.0
        hooks:
          - id: check-ast
          - id: check-docstring-first
          - id: check-executables-have-shebangs
          - id: check-merge-conflict
          - id: check-symlinks
          - id: debug-statements
          - id: trailing-whitespace
          - id: check-yaml
            args: [--allow-multiple-documents]
          - id: mixed-line-ending
          - id: name-tests-test
            args: ['--django']
          - id: check-json
          - id: requirements-txt-fixer
          - id: end-of-file-fixer
          - id: mixed-line-ending
      - repo: https://github.com/codespell-project/codespell
        rev: v2.2.6
        hooks:
          - id: codespell
            args:
            - --write-changes
            - --exclude-file=LICENCE
      - repo: https://github.com/PyCQA/doc8
        rev: v1.1.1
        hooks:
          - id: doc8
      - repo: meta
        hooks:
          - id: check-useless-excludes
      - repo: https://github.com/executablebooks/mdformat
        rev: 0.7.17
        hooks:
        - id: mdformat
          exclude: tests/data/analyze|tests/data/evaluate/.*.md
          # Optionally add plugins
          additional_dependencies:
          - mdformat-mkdocs[recommended]