Skip to content
Merged
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
1 change: 1 addition & 0 deletions .github/scripts/get_latest_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

```
"""

import re

h2 = r"^##\s.*$"
Expand Down
1 change: 0 additions & 1 deletion hatch_version_hook.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
from hatchling.builders.hooks.plugin.interface import BuildHookInterface
from typing import Any, Optional


_logger = logging.Logger(__name__, logging.INFO)
_stdout_handler = logging.StreamHandler(sys.stdout)
_stdout_handler.addFilter(lambda record: record.levelno <= logging.INFO)
Expand Down
9 changes: 6 additions & 3 deletions requirements-testing.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
coverage[toml] == 7.*
pytest == 8.4.*
pytest == 9.1.*; python_version >= "3.10"
pytest == 8.4.*; python_version < "3.10"
pytest-cov == 7.1.*
pytest-timeout == 2.4.*
pytest-xdist == 3.8.*
types-PyYAML == 6.*
black == 25.*
mypy == 1.19.*
black == 26.*; python_version >= "3.10"
black == 25.*; python_version < "3.10"
mypy == 2.1.*; python_version >= "3.10"
mypy == 1.19.*; python_version < "3.10"
ruff == 0.15.*
1 change: 0 additions & 1 deletion src/openjd/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@

from .cli._create_argparser import main


main()
1 change: 0 additions & 1 deletion src/openjd/cli/_create_argparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
from ._run import populate_argparser as populate_run_subparser
from ._schema import populate_argparser as populate_schema_subparser


# Our CLI subcommand construction requires that all leaf subcommands define a default
# 'func' property which is a Callable[[],None] that implements the subcommand.
# After parsing, we call that `func` argument of the resulting args object.
Expand Down
1 change: 0 additions & 1 deletion test/openjd/cli/test_run_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
from openjd.cli._run._local_session._session_manager import LoggingTimestampFormat
from openjd.sessions import LOG as SessionsLogger, PathMappingRule, PathFormat


PARAMETRIZE_CASES: tuple = (
pytest.param(
"basic.yaml",
Expand Down
Loading