Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
natir committed Jan 14, 2025
1 parent 7586bf0 commit 9b11ed2
Showing 5 changed files with 25 additions and 23 deletions.
2 changes: 0 additions & 2 deletions config/ruff.toml
Original file line number Diff line number Diff line change
@@ -57,8 +57,6 @@ select = [
]
ignore = [
"A001", # Variable is shadowing a Python builtin
"ANN101", # Missing type annotation for self
"ANN102", # Missing type annotation for cls
"ANN204", # Missing return type annotation for special method __str__
"ANN401", # Dynamically typed expressions (typing.Any) are disallowed
"ARG005", # Unused lambda argument
39 changes: 19 additions & 20 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -78,33 +78,32 @@ dev-dependencies = [
"editables>=0.5",

# maintenance
"build>=1.2",
"git-changelog>=2.5",
"twine>=5.1",
"build>=1",
"git-changelog>=2",
"twine>=6",

# ci
"duty>=1.4",
"ruff>=0.4",
"pytest>=8.2",
"pytest-cov>=5.0",
"pytest-randomly>=3.15",
"pytest-xdist>=3.6",
"mypy>=1.10",
"types-markdown>=3.6",
"types-pyyaml>=6.0",
"duty>=1",
"ruff>=0.9",
"pytest>=8",
"pytest-cov>=6",
"pytest-randomly>=3",
"pytest-xdist>=3",
"mypy>=1",
"types-markdown>=3",
"types-pyyaml>=6",

# docs
"black>=24.4",
"markdown-callouts>=0.4",
"markdown-exec>=1.8",
"mkdocs>=1.6",
"mkdocs-coverage>=1.0",
"markdown-exec>=1",
"mkdocs>=1",
"mkdocs-coverage>=1",
"mkdocs-gen-files>=0.5",
"mkdocs-git-revision-date-localized-plugin>=1.2",
"mkdocs-git-revision-date-localized-plugin>=1",
"mkdocs-literate-nav>=0.6",
"mkdocs-material>=9.5",
"mkdocs-material>=9",
"mkdocs-minify-plugin>=0.8",
"mkdocstrings[python]>=0.25",
"mkdocstrings[python]>=0.27",
# YORE: EOL 3.10: Remove line.
"tomli>=2.0; python_version < '3.11'",
"tomli>=2; python_version < '3.11'",
]
2 changes: 2 additions & 0 deletions src/variantplaner/cli/struct.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Module contains struct subcommand entry point function."""

# ruff: noqa: A005

# std import
from __future__ import annotations

2 changes: 2 additions & 0 deletions src/variantplaner/objects/csv.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Declare CSV object."""

# ruff: noqa: A005

# std import
from __future__ import annotations

3 changes: 2 additions & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -571,7 +571,8 @@ def test_metadata_json(tmp_path: pathlib.Path) -> None:
str(DATA_DIR / "metadata.json"),
"-o",
str(metadata_path),
"-t" "json",
"-t",
"json",
],
)

0 comments on commit 9b11ed2

Please sign in to comment.