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
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ Changed
- ``parse_optionals_as_positionals`` and ``applied_instantiation_links`` no
longer marked as experimental (`#788
<https://github.com/omni-us/jsonargparse/pull/788>`__).
- Moved location of ``Path`` class from ``jsonargparse`` to
``jsonargparse.typing`` (`#792
<https://github.com/omni-us/jsonargparse/pull/792>`__).


v4.42.0 (2025-10-14)
Expand Down
1 change: 1 addition & 0 deletions jsonargparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from ._loaders_dumpers import * # noqa: F403
from ._namespace import * # noqa: F403
from ._optionals import * # noqa: F403
from ._paths import Path # noqa: F401
from ._signatures import * # noqa: F403
from ._typehints import * # noqa: F403
from ._util import * # noqa: F403
Expand Down
2 changes: 1 addition & 1 deletion jsonargparse/_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
from ._loaders_dumpers import get_loader_exceptions, load_value
from ._namespace import Namespace, NSKeyError, split_key, split_key_root
from ._optionals import _get_config_read_mode, ruamel_support
from ._paths import change_to_path_dir
from ._type_checking import ActionsContainer, ArgumentParser
from ._util import (
Path,
argument_error,
change_to_path_dir,
default_config_option_help,
get_import_path,
import_object,
Expand Down
2 changes: 1 addition & 1 deletion jsonargparse/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,13 +85,13 @@
pyyaml_available,
)
from ._parameter_resolvers import UnknownDefault
from ._paths import change_to_path_dir
from ._signatures import SignatureArguments
from ._typehints import ActionTypeHint, is_subclass_spec
from ._util import (
ClassType,
Path,
argument_error,
change_to_path_dir,
get_argument_group_class,
get_private_kwargs,
identity,
Expand Down
Loading