Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#211)
Browse files Browse the repository at this point in the history
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.2.1 → v0.3.4](astral-sh/ruff-pre-commit@v0.2.1...v0.3.4)
- [github.com/pre-commit/mirrors-mypy: v1.8.0 → v1.9.0](pre-commit/mirrors-mypy@v1.8.0...v1.9.0)

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] committed Apr 1, 2024
1 parent 8264ad3 commit 94f7bc9
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ repos:
- id: yamlfmt

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.2.1
rev: v0.3.4
hooks:
- id: ruff-format
exclude: ^docs/
- id: ruff
args: [--fix, --exit-non-zero-on-fix, --show-fixes]

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.8.0
rev: v1.9.0
hooks:
- id: mypy
additional_dependencies:
Expand Down
1 change: 1 addition & 0 deletions aiidalab_launch/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Authors:
* Carl Simon Adorf <simon.adorf@epfl.ch>
"""

import asyncio
import getpass
import logging
Expand Down
1 change: 1 addition & 0 deletions aiidalab_launch/application_state.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
Authors:
* Carl Simon Adorf <simon.adorf@epfl.ch>
"""

from dataclasses import dataclass, field
from pathlib import Path

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""This file is required for editable installs of the package."""

from setuptools import setup

setup()
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
Provide fixtures for all tests.
"""

import asyncio
import random
import re
Expand Down
1 change: 1 addition & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
This is the test module for the project's command-line interface (CLI)
module.
"""

import logging
from dataclasses import replace

Expand Down
1 change: 1 addition & 0 deletions tests/test_instance.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
.. currentmodule:: test_core
.. moduleauthor:: Carl Simon Adorf <simon.adorf@epfl.ch>
"""

import re
from copy import deepcopy
from dataclasses import replace
Expand Down

0 comments on commit 94f7bc9

Please sign in to comment.