From b6669695f4c5ce056df2a7ee04cdc1294916d9e8 Mon Sep 17 00:00:00 2001 From: David Muhr Date: Tue, 7 May 2024 07:47:53 +0200 Subject: [PATCH] Remove unnecessary jsonargparse dependencies --- CHANGELOG.md | 1 + pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c6b4e5d96..ab68a41452 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Changed +- Remove unnecessary jsonargparse dependencies by @davnn in () - Use default model-specific eval transform when only train_transform specified by @djdameln(https://github.com/djdameln) in () - 🔨Rename OptimalF1 to F1Max for consistency with the literature, by @samet-akcay in https://github.com/openvinotoolkit/anomalib/pull/1980 - 🐞Update OptimalF1 score to use BinaryPrecisionRecallCurve and remove num_classes by @ashwinvaidya17 in https://github.com/openvinotoolkit/anomalib/pull/1972 diff --git a/pyproject.toml b/pyproject.toml index fa5af34ae4..ee807f307b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ authors = [{ name = "Intel OpenVINO" }] dependencies = [ "omegaconf>=2.1.1", "rich>=13.5.2", - "jsonargparse[all]>=4.27.7", + "jsonargparse[signatures]>=4.27.7", "docstring_parser", # CLI help-formatter "rich_argparse", # CLI help-formatter ]