Skip to content

Commit

Permalink
Merge pull request #21 from cmelab/pre-commit-ci-update-config
Browse files Browse the repository at this point in the history
[pre-commit.ci] pre-commit autoupdate
  • Loading branch information
chrisjonesBSU authored Jan 29, 2024
2 parents 4873f8a + 16ac08d commit 5a01bbf
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0
rev: v4.5.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 22.6.0
rev: 24.1.1
hooks:
- id: black
args: [--line-length=80]
- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.13.2
hooks:
- id: isort
name: isort (python)
args: ["--profile", "black"]
- repo: https://github.com/pycqa/pydocstyle
rev: '6.1.1'
rev: '6.3.0'
hooks:
- id: pydocstyle
exclude: ^(examples/|gixstapose/tests/|gixstapose/data/|setup.py)
Expand Down
1 change: 1 addition & 0 deletions gixstapose/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""GIXStapose version."""

VERSION = (0, 0, 4)

__version__ = ".".join(map(str, VERSION))
1 change: 1 addition & 0 deletions gixstapose/diffractometer.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Diffractometer module of GIXStapose."""

import os
import time
from os import makedirs
Expand Down
1 change: 1 addition & 0 deletions gixstapose/draw_scene.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Scene drawing module for GIXStapose."""

import os
import random

Expand Down
1 change: 1 addition & 0 deletions gixstapose/main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""GIXStapose QT application."""

import argparse
import os
from pathlib import Path
Expand Down

0 comments on commit 5a01bbf

Please sign in to comment.