Update dependency jsonargparse to v3 #179

Merged
renovate[bot] merged 1 commit from renovate/jsonargparse-3.x into master 2021-05-12 15:50:28 +02:00
renovate[bot] commented 2020-12-01 13:00:42 +01:00 (Migrated from github.com)

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
jsonargparse (source) ==2.32.2 -> ==3.11.2 age adoption passing confidence

Release Notes

omni-us/jsonargparse

v3.11.2

Compare Source

Fixed
^^^^^

  • Link argument arrow <= can be confused as less or equal, changed to <--.

v3.11.1

Compare Source

Fixed
^^^^^

  • add_dataclass_arguments not making parameters without default as required #​54.
  • Removed from signature add methods required option included by mistake.

v3.11.0

Compare Source

Added
^^^^^

  • CLI now has --config options at subcommand and subsubcommand levels.
  • CLI now adds subcommands with help string taken from docstrings.
  • print_config at subcommand level for global config with implicit subcommands.
  • New Path_drw predefined type.
  • Type hint arguments now support nargs='?'.
  • Signature methods can now skip arguments within init_args of subclasses.

Changed
^^^^^^^

  • Removed skip_check from ActionPathList which was never implemented.

Deprecated
^^^^^^^^^^

  • ActionPath should no longer be used, instead paths are given as type.

Fixed
^^^^^

  • Actions not being applied for subsubcommand values.
  • handle_subcommands not correctly inferring subsubcommand.

v3.10.1

Compare Source

Changed
^^^^^^^

  • fail_untyped now adds untyped parameters as type Any and if no default
    then default set to None.

Fixed
^^^^^

  • --*.help option being added for non-subclass types.
  • Iterable and Sequence types not working for python>=3.7 #​53.

v3.10.0

Compare Source

Added
^^^^^

  • set_defaults method now works for arguments within subcommands.
  • CLI set_defaults option to allow overriding of defaults.
  • CLI return_parser option to ease inclusion in documentation.
  • save_path_content attribute to save paths content on config save.
  • New link_arguments method to derive an argument value from others.
  • print_config now includes subclass init_args if class_path given.
  • Subclass type hints now also have a --*.help option.

Changed
^^^^^^^

  • Signature parameters whose name starts with "_" are skipped.
  • The repr of Path now has the form Path_{mode}(.

Fixed
^^^^^

  • CLI now does instantiate_subclasses before running.

v3.9.0

Compare Source

Added
^^^^^

  • New method add_dataclass_arguments.
  • Dataclasses are now supported as a type.
  • New predefined type Path_dc.
  • Experimental Callable type support.
  • Signature methods with nested key can be made required.
  • Support for Literal types.
  • New option in signatures methods to not fail for untyped required.

Changed
^^^^^^^

  • Generation of yaml now uses internally pyyaml's safe_dump.
  • New cleaner implementation for type hints support.
  • Moved deprecated code to a module specific for this.
  • Path types repr now has format Path(rel[, cwd=dir]).
  • instantiate_subclasses now always returns a dict.

Deprecated
^^^^^^^^^^

  • ActionEnum should no longer be used, instead enums are given as type.

Fixed
^^^^^

  • Deserialization of types not being done for nested config files.

v3.8.1

Compare Source

Fixed
^^^^^

  • Help fails saying required args missing if default config file exists #​48.
  • ActionYesNo arguments failing when parsing from environment variable #​49.

v3.8.0

Compare Source

Added
^^^^^

  • Path class now supports home prefix '~' #​45.
  • yaml/json dump kwargs can now be changed via attributes dump_yaml_kwargs and
    dump_json_kwargs.

Changed
^^^^^^^

  • Now by default dump/save/print_config preserve the add arguments and argument
    groups order (only CPython>=3.6) #​46.
  • ActionParser group title now defaults to None if not given #​47.
  • Add argument with type Enum or type hint giving an action now raises error #​45.
  • Parser help now also considers default_config_files and shows which config file
    was loaded #​47.
  • get_default method now also considers default_config_files.
  • get_defaults now raises ParserError if default config file not valid.

Fixed
^^^^^

  • default_config_files property not removing help group when setting None.

v3.7.0

Compare Source

Changed
^^^^^^^

  • ActionParser now moves all actions to the parent parser.
  • The help of ActionParser arguments is now shown in the main help #​41.

Fixed
^^^^^

  • Use of required in ActionParser parsers not working #​43.
  • Nested options with names including dashes not working #​42.
  • DefaultHelpFormatter not properly using env_prefix to show var names.

v3.6.0

Compare Source

Added
^^^^^

  • Function to register additional types for use in parsers.
  • Type hint support for complex and UUID classes.

Changed
^^^^^^^

  • PositiveInt and NonNegativeInt now gives error instead of silently truncating
    when given float.
  • Types created with restricted_number_type and restricted_string_type now share
    a common TypeCore base class.

Fixed
^^^^^

  • ActionOperators not give error if type already registered.
  • List[Tuple] types not working correctly.
  • Some nested dicts kept as Namespace by dump.

v3.5.1

Compare Source

Fixed
^^^^^

  • Parsing of relative paths in default_config_files not working.
  • Description of tuple type in the readme.

v3.5.0

Compare Source

Added
^^^^^

  • Tuples with ellipsis are now supported #​40.

Fixed
^^^^^

  • Using dict as type incorrectly considered as class requiring class_path.
  • Nested tuples were not working correctly #​40.

v3.4.1

Compare Source

Fixed
^^^^^

  • CLI crashed for class method when zero args given after subcommand.
  • Options before subcommand provided in config file gave subcommand not given.
  • Arguments in groups without help not showing required, type and default.
  • Required arguments help incorrectly showed null default value.
  • Various improvements and fixes to the readme.

v3.4.0

Compare Source

Added
^^^^^

  • Save with multifile=True now creates original jsonnet file for ActionJsonnet.
  • default_config_files is now a property of parser objects.
  • Table in readme to ease understanding of extras requires for optional features #​38.

Changed
^^^^^^^

  • Save with multifile=True uses file extension to choose json or yaml format.

Fixed
^^^^^

  • Better exception message when using ActionJsonSchema and jsonschema not installed #​38.

v3.3.2

Compare Source

Fixed
^^^^^

  • Changed actions so that keyword arguments are visible in API.
  • Fixed save method short description which was copy paste of dump.
  • Added missing docstring in instantiate_subclasses method.
  • Fixed crash when using --help and ActionConfigFile not given help string.
  • Standardized capitalization and punctuation of: help, config, version.

v3.3.1

Compare Source

Fixed
^^^^^

  • instantiate_subclasses work properly when init_args not present.
  • Addressed a couple of issues pointed out by sonarcloud.

v3.3.0

Compare Source

Added
^^^^^

  • New add_subclass_arguments method to add as type with a specific help option.

v3.2.1

Compare Source

Added
^^^^^

  • Automatic Optional for arguments with default None #​30.
  • CLI now supports running methods from classes.
  • Signature arguments can now be loaded from independent config files #​32.
  • add_argument now supports enable_path for type based on jsonschema.
  • print_config can now be given as value skip_null to exclude null entries.

Changed
^^^^^^^

  • Improved description of parser used as standalone and for ActionParser #​34.
  • Removed :code:__cwd__ and top level :code:__path__ that were not needed.

Fixed
^^^^^

  • ActionYesNo argument in help the type is now bool.
  • Correctly skip self in add_method_arguments for inherited methods.
  • Prevent failure of dump in cleanup_actions due to new _ActionConfigLoad.
  • Prevent failure in save_paths for dict with int keys.
  • Avoid duplicate config check failure message with subcommands.

v3.1.0

Compare Source

Added
^^^^^

  • Support for multiple levels of subcommands #​29.
  • Default description of subcommands explaining use of --help.

v3.0.1

Compare Source

Fixed
^^^^^

  • add_class_arguments incorrectly added arguments from :code:__call__ instead
    of :code:__init__ for callable classes.

v3.0.0

Compare Source

Added
^^^^^

  • Functions to add arguments from classes, methods and functions.
  • CLI function that allows creating a line command line interface with a single
    line of code inspired by Fire.
  • Typing module that includes predefined types and type generator functions
    for paths and restricted numbers/strings.
  • Extended support to add_argument type to allow complex type hints.
  • Parsers now include --print_config option to dump defaults.
  • Support argcomplete for tab completion of arguments.

Changed
^^^^^^^

  • ArgumentParsers by default now use as error_handler the
    usage_and_exit_error_handler.
  • error_handler and formatter_class no longer accept as value a string.
  • Changed SimpleNamespace to Namespace to avoid unnecessary differences with
    argparse.

Deprecated
^^^^^^^^^^

  • ActionOperators should no longer be used, the new alternative is
    restricted number types.

Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box.

This PR has been generated by WhiteSource Renovate. View repository job log here.

[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [jsonargparse](https://omni-us.github.io/jsonargparse) ([source](https://togithub.com/omni-us/jsonargparse)) | `==2.32.2` -> `==3.11.2` | [![age](https://badges.renovateapi.com/packages/pypi/jsonargparse/3.11.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/pypi/jsonargparse/3.11.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/pypi/jsonargparse/3.11.2/compatibility-slim/2.32.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/pypi/jsonargparse/3.11.2/confidence-slim/2.32.2)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>omni-us/jsonargparse</summary> ### [`v3.11.2`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v3112-2021-05-03) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.11.1...v3.11.2) Fixed ^^^^^ - Link argument arrow `<=` can be confused as less or equal, changed to `<--`. ### [`v3.11.1`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v3111-2021-04-30) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.11.0...v3.11.1) Fixed ^^^^^ - add_dataclass_arguments not making parameters without default as required [#&#8203;54](https://togithub.com/omni-us/jsonargparse/issues/54). - Removed from signature add methods required option included by mistake. ### [`v3.11.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v3110-2021-04-27) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.10.1...v3.11.0) Added ^^^^^ - CLI now has --config options at subcommand and subsubcommand levels. - CLI now adds subcommands with help string taken from docstrings. - print_config at subcommand level for global config with implicit subcommands. - New Path_drw predefined type. - Type hint arguments now support nargs='?'. - Signature methods can now skip arguments within init_args of subclasses. Changed ^^^^^^^ - Removed skip_check from ActionPathList which was never implemented. Deprecated ^^^^^^^^^^ - ActionPath should no longer be used, instead paths are given as type. Fixed ^^^^^ - Actions not being applied for subsubcommand values. - handle_subcommands not correctly inferring subsubcommand. ### [`v3.10.1`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v3101-2021-04-24) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.10.0...v3.10.1) Changed ^^^^^^^ - fail_untyped now adds untyped parameters as type Any and if no default then default set to None. Fixed ^^^^^ - \--\*.help option being added for non-subclass types. - Iterable and Sequence types not working for python>=3.7 [#&#8203;53](https://togithub.com/omni-us/jsonargparse/issues/53). ### [`v3.10.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v3100-2021-04-19) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.9.0...v3.10.0) Added ^^^^^ - set_defaults method now works for arguments within subcommands. - CLI set_defaults option to allow overriding of defaults. - CLI return_parser option to ease inclusion in documentation. - save_path_content attribute to save paths content on config save. - New `link_arguments` method to derive an argument value from others. - print_config now includes subclass init_args if class_path given. - Subclass type hints now also have a --\*.help option. Changed ^^^^^^^ - Signature parameters whose name starts with "\_" are skipped. - The repr of Path now has the form `Path_{mode}(`. Fixed ^^^^^ - CLI now does instantiate_subclasses before running. ### [`v3.9.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v390-2021-04-09) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.8.1...v3.9.0) Added ^^^^^ - New method add_dataclass_arguments. - Dataclasses are now supported as a type. - New predefined type Path_dc. - Experimental Callable type support. - Signature methods with nested key can be made required. - Support for Literal types. - New option in signatures methods to not fail for untyped required. Changed ^^^^^^^ - Generation of yaml now uses internally pyyaml's safe_dump. - New cleaner implementation for type hints support. - Moved deprecated code to a module specific for this. - Path types repr now has format Path(rel[, cwd=dir]). - instantiate_subclasses now always returns a dict. Deprecated ^^^^^^^^^^ - ActionEnum should no longer be used, instead enums are given as type. Fixed ^^^^^ - Deserialization of types not being done for nested config files. ### [`v3.8.1`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v381-2021-03-22) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.8.0...v3.8.1) Fixed ^^^^^ - Help fails saying required args missing if default config file exists [#&#8203;48](https://togithub.com/omni-us/jsonargparse/issues/48). - ActionYesNo arguments failing when parsing from environment variable [#&#8203;49](https://togithub.com/omni-us/jsonargparse/issues/49). ### [`v3.8.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v380-2021-03-22) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.7.0...v3.8.0) Added ^^^^^ - Path class now supports home prefix '~' [#&#8203;45](https://togithub.com/omni-us/jsonargparse/issues/45). - yaml/json dump kwargs can now be changed via attributes dump_yaml_kwargs and dump_json_kwargs. Changed ^^^^^^^ - Now by default dump/save/print_config preserve the add arguments and argument groups order (only CPython>=3.6) [#&#8203;46](https://togithub.com/omni-us/jsonargparse/issues/46). - ActionParser group title now defaults to None if not given [#&#8203;47](https://togithub.com/omni-us/jsonargparse/issues/47). - Add argument with type Enum or type hint giving an action now raises error [#&#8203;45](https://togithub.com/omni-us/jsonargparse/issues/45). - Parser help now also considers default_config_files and shows which config file was loaded [#&#8203;47](https://togithub.com/omni-us/jsonargparse/issues/47). - get_default method now also considers default_config_files. - get_defaults now raises ParserError if default config file not valid. Fixed ^^^^^ - default_config_files property not removing help group when setting None. ### [`v3.7.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v370-2021-03-17) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.6.0...v3.7.0) Changed ^^^^^^^ - ActionParser now moves all actions to the parent parser. - The help of ActionParser arguments is now shown in the main help [#&#8203;41](https://togithub.com/omni-us/jsonargparse/issues/41). Fixed ^^^^^ - Use of required in ActionParser parsers not working [#&#8203;43](https://togithub.com/omni-us/jsonargparse/issues/43). - Nested options with names including dashes not working [#&#8203;42](https://togithub.com/omni-us/jsonargparse/issues/42). - DefaultHelpFormatter not properly using env_prefix to show var names. ### [`v3.6.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v360-2021-03-08) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.5.1...v3.6.0) Added ^^^^^ - Function to register additional types for use in parsers. - Type hint support for complex and UUID classes. Changed ^^^^^^^ - PositiveInt and NonNegativeInt now gives error instead of silently truncating when given float. - Types created with restricted_number_type and restricted_string_type now share a common TypeCore base class. Fixed ^^^^^ - ActionOperators not give error if type already registered. - List[Tuple] types not working correctly. - Some nested dicts kept as Namespace by dump. ### [`v3.5.1`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v351-2021-02-26) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.5.0...v3.5.1) Fixed ^^^^^ - Parsing of relative paths in default_config_files not working. - Description of tuple type in the readme. ### [`v3.5.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v350-2021-02-12) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.4.1...v3.5.0) Added ^^^^^ - Tuples with ellipsis are now supported [#&#8203;40](https://togithub.com/omni-us/jsonargparse/issues/40). Fixed ^^^^^ - Using dict as type incorrectly considered as class requiring class_path. - Nested tuples were not working correctly [#&#8203;40](https://togithub.com/omni-us/jsonargparse/issues/40). ### [`v3.4.1`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v341-2021-02-03) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.4.0...v3.4.1) Fixed ^^^^^ - CLI crashed for class method when zero args given after subcommand. - Options before subcommand provided in config file gave subcommand not given. - Arguments in groups without help not showing required, type and default. - Required arguments help incorrectly showed null default value. - Various improvements and fixes to the readme. ### [`v3.4.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v340-2021-02-01) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.3.2...v3.4.0) Added ^^^^^ - Save with multifile=True now creates original jsonnet file for ActionJsonnet. - default_config_files is now a property of parser objects. - Table in readme to ease understanding of extras requires for optional features [#&#8203;38](https://togithub.com/omni-us/jsonargparse/issues/38). Changed ^^^^^^^ - Save with multifile=True uses file extension to choose json or yaml format. Fixed ^^^^^ - Better exception message when using ActionJsonSchema and jsonschema not installed [#&#8203;38](https://togithub.com/omni-us/jsonargparse/issues/38). ### [`v3.3.2`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v332-2021-01-22) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.3.1...v3.3.2) Fixed ^^^^^ - Changed actions so that keyword arguments are visible in API. - Fixed save method short description which was copy paste of dump. - Added missing docstring in instantiate_subclasses method. - Fixed crash when using --help and ActionConfigFile not given help string. - Standardized capitalization and punctuation of: help, config, version. ### [`v3.3.1`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v331-2021-01-08) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.3.0...v3.3.1) Fixed ^^^^^ - instantiate_subclasses work properly when init_args not present. - Addressed a couple of issues pointed out by sonarcloud. ### [`v3.3.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v330-2021-01-08) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.2.1...v3.3.0) Added ^^^^^ - New add_subclass_arguments method to add as type with a specific help option. ### [`v3.2.1`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v321-2020-12-30) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.1.0...v3.2.1) Added ^^^^^ - Automatic Optional for arguments with default None [#&#8203;30](https://togithub.com/omni-us/jsonargparse/issues/30). - CLI now supports running methods from classes. - Signature arguments can now be loaded from independent config files [#&#8203;32](https://togithub.com/omni-us/jsonargparse/issues/32). - add_argument now supports enable_path for type based on jsonschema. - print_config can now be given as value skip_null to exclude null entries. Changed ^^^^^^^ - Improved description of parser used as standalone and for ActionParser [#&#8203;34](https://togithub.com/omni-us/jsonargparse/issues/34). - Removed :code:`__cwd__` and top level :code:`__path__` that were not needed. Fixed ^^^^^ - ActionYesNo argument in help the type is now bool. - Correctly skip self in add_method_arguments for inherited methods. - Prevent failure of dump in cleanup_actions due to new \_ActionConfigLoad. - Prevent failure in save_paths for dict with int keys. - Avoid duplicate config check failure message with subcommands. ### [`v3.1.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v310-2020-12-09) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.0.1...v3.1.0) Added ^^^^^ - Support for multiple levels of subcommands [#&#8203;29](https://togithub.com/omni-us/jsonargparse/issues/29). - Default description of subcommands explaining use of --help. ### [`v3.0.1`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v301-2020-12-02) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v3.0.0...v3.0.1) Fixed ^^^^^ - add_class_arguments incorrectly added arguments from :code:`__call__` instead of :code:`__init__` for callable classes. ### [`v3.0.0`](https://togithub.com/omni-us/jsonargparse/blob/master/CHANGELOG.rst#v300-2020-12-01) [Compare Source](https://togithub.com/omni-us/jsonargparse/compare/v2.32.2...v3.0.0) Added ^^^^^ - Functions to add arguments from classes, methods and functions. - CLI function that allows creating a line command line interface with a single line of code inspired by Fire. - Typing module that includes predefined types and type generator functions for paths and restricted numbers/strings. - Extended support to add_argument type to allow complex type hints. - Parsers now include --print_config option to dump defaults. - Support argcomplete for tab completion of arguments. Changed ^^^^^^^ - ArgumentParsers by default now use as error_handler the usage_and_exit_error_handler. - error_handler and formatter_class no longer accept as value a string. - Changed SimpleNamespace to Namespace to avoid unnecessary differences with argparse. Deprecated ^^^^^^^^^^ - ActionOperators should no longer be used, the new alternative is restricted number types. </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box. --- This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/Solvik/netbox-agent).
renovate[bot] commented 2020-12-10 13:51:27 +01:00 (Migrated from github.com)

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻️ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you check the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: requirements.txt


### :warning: Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. :recycle: Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you check the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: requirements.txt ``` ```
Sign in to join this conversation.
No description provided.