Skip to content

Commit b89ed2f

Browse files
authored
py(deps): ruff 0.2.2 -> 0.3.0, et al. (#913)
See also: https://github.com/astral-sh/ruff/blob/v0.3.0/CHANGELOG.md
2 parents 141fb9a + 595b8e3 commit b89ed2f

File tree

86 files changed

+118
-30
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+118
-30
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
- name: Install python dependencies
5656
run: poetry install --with=test,coverage,lint
5757

58-
- name: Lint with ruff .
59-
run: poetry run ruff .
58+
- name: Lint with ruff check .
59+
run: poetry run ruff check .
6060

6161
- name: Format with ruff
6262
run: poetry run ruff format . --check

CHANGES

Lines changed: 6 additions & 0 deletions

docs/_ext/aafig.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
:author: Leandro Lucarella <llucax@gmail.com>
1212
:license: BOLA, see LICENSE for details
1313
"""
14+
1415
import logging
1516
import posixpath
1617
import typing as t

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# flake8: NOQA: E501
22
"""Sphinx documentation configuration for tmuxp."""
3+
34
import contextlib
45
import inspect
56
import pathlib

poetry.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/tmuxp/__about__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Metadata for tmuxp package."""
2+
23
__title__ = "tmuxp"
34
__package_name__ = "tmuxp"
45
__version__ = "1.39.0"

src/tmuxp/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
:copyright: Copyright 2013- Tony Narlock.
55
:license: MIT, see LICENSE for details
66
"""
7+
78
from . import cli, util
89
from .__about__ import (
910
__author__,

src/tmuxp/_internal/config_reader.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Configuration parser for YAML and JSON files."""
2+
23
import json
34
import pathlib
45
import typing as t

src/tmuxp/_internal/types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
... from tmuxp._internal.types import PluginConfigSchema
1010
...
1111
"""
12+
1213
import typing as t
1314

1415
from typing_extensions import NotRequired, TypedDict

src/tmuxp/cli/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""CLI utilities for tmuxp."""
2+
23
import argparse
34
import logging
45
import os

0 commit comments

Comments
 (0)