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
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ci:
autoupdate_schedule: monthly
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v6.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -14,17 +14,17 @@ repos:
- id: mixed-line-ending

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: 'v0.1.7'
rev: 'v0.14.10'
hooks:
- id: ruff
args: ['--fix']

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.7
rev: v0.14.10
hooks:
- id: ruff-format

- repo: https://github.com/pre-commit/mirrors-prettier
rev: v4.0.0-alpha.3-1
rev: v4.0.0-alpha.8
hooks:
- id: prettier
3 changes: 2 additions & 1 deletion ncar_jobqueue/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python3
# flake8: noqa
""" Top-level module for ncar-jobqueue. """
"""Top-level module for ncar-jobqueue."""

from pkg_resources import DistributionNotFound, get_distribution

from . import config
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

"""The setup script."""


from setuptools import find_packages, setup

with open('README.md') as f:
Expand Down
Loading