Skip to content
This repository was archived by the owner on Jan 29, 2024. It is now read-only.

[pre-commit.ci] pre-commit autoupdate #97

Closed
wants to merge 2 commits into from
Closed
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
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 23.1.0
rev: 24.1.1
hooks:
- id: black
additional_dependencies: ['click==8.0.4']
args: [--line-length=80]
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
name: isort (python)
Expand Down
1 change: 1 addition & 0 deletions planckton/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""PlanckTon."""

from . import utils
from .__version__ import __version__

Expand Down
1 change: 1 addition & 0 deletions planckton/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""PlanckTon version."""

VERSION = (0, 7, 0)

__version__ = ".".join(map(str, VERSION))
1 change: 1 addition & 0 deletions planckton/compounds/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Compounds included with PlanckTon."""

import glob
import os

Expand Down
1 change: 1 addition & 0 deletions planckton/forcefields/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Forcefields included with PlanckTon."""

import warnings
from os import path

Expand Down
1 change: 1 addition & 0 deletions planckton/init.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tools for initializing an OPV simulation with PlanckTon."""

import os
import warnings

Expand Down
1 change: 1 addition & 0 deletions planckton/sim.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tools for running an OPV simulation with PlanckTon."""

import os

import hoomd.data
Expand Down
Loading