Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
repos:
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.12.0
rev: v3.14.0
hooks:
- id: reorder-python-imports
args: ["--py38-plus"]
exclude: ^docs/

- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v5.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -19,12 +19,12 @@ repos:
- id: add-trailing-comma

- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
rev: v3.19.0
hooks:
- id: pyupgrade

- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.10.0
hooks:
- id: black
args: ["--safe", "-l120"]
Expand Down
1 change: 1 addition & 0 deletions geneplexus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@
analysis *cannot* be done due to the lack to pretrained models.

"""

from ._config import config # noreorder
from . import download
from . import util
Expand Down
1 change: 1 addition & 0 deletions geneplexus/_config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Basic configurations."""

from . import config
from .logger_util import make_logger

Expand Down
1 change: 1 addition & 0 deletions geneplexus/_config/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Global variables used by the GenePlexus library."""

import os.path as osp
import pathlib
from typing import Any
Expand Down
1 change: 1 addition & 0 deletions geneplexus/_config/logger_util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Logger utilities."""

import logging
from contextlib import contextmanager
from typing import Optional
Expand Down
1 change: 1 addition & 0 deletions geneplexus/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Command line interface for the GenePlexus pipeline."""

import argparse
import atexit
import os
Expand Down
1 change: 1 addition & 0 deletions geneplexus/download.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Data download module."""

import io
import os
import os.path as osp
Expand Down
1 change: 1 addition & 0 deletions geneplexus/geneplexus.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""GenePlexus API."""

import os
import os.path as osp
import warnings
Expand Down
1 change: 1 addition & 0 deletions geneplexus/util.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Utilities including file and path handling."""

import functools
import json
import os
Expand Down
Loading