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
@@ -1,19 +1,19 @@
exclude: '.git|.tox'
default_stages: [commit]
default_stages: [pre-commit]
fail_fast: true

repos:
- repo: https://github.com/psf/black
rev: 22.8.0
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 25.11.0
hooks:
- id: black

- repo: https://github.com/timothycrosley/isort
rev: 5.10.1
- repo: https://github.com/PyCQA/isort
rev: 7.0.0
hooks:
- id: isort

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.0.133
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.5
hooks:
- id: ruff
1 change: 1 addition & 0 deletions ase_md/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""ASE MD package."""

import importlib.metadata
import logging
import sys
Expand Down
1 change: 1 addition & 0 deletions ase_md/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
https://wiki.fysik.dtu.dk/ase/tutorials/md/md.html

"""

import typing

import ase
Expand Down
1 change: 1 addition & 0 deletions tests/test_asemd.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test the ASEMD package."""

import ase

import ase_md
Expand Down