Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

Update dependency importlib-metadata to v6 #413

Merged
merged 1 commit into from
Mar 19, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 18, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
importlib-metadata 4.2.0 -> 6.1.0 age adoption passing confidence

Release Notes

python/importlib_metadata

v6.1.0

Compare Source

======

  • #​428: packages_distributions now honors packages and modules
    with Python modules that not .py sources (e.g. .pyc,
    .so).

v6.0.1

Compare Source

======

  • #​434: Expand protocol for PackageMetadata.get_all to match
    the upstream implementation of email.message.Message.get_all
    in python/typeshed#​9620.

v6.0.0

Compare Source

======

  • #​419: Declared Distribution as an abstract class, enforcing
    definition of abstract methods in instantiated subclasses. It's no
    longer possible to instantiate a Distribution or any subclasses
    unless they define the abstract methods.

    Please comment in the issue if this change breaks any projects.
    This change will likely be rolled back if it causes significant
    disruption.

v5.2.0

Compare Source

======

  • #​371: Deprecated expectation that PackageMetadata.__getitem__
    will return None for missing keys. In the future, it will raise a
    KeyError.

v5.1.0

Compare Source

======

  • #​415: Instrument SimplePath with generic support.

v5.0.0

Compare Source

======

v4.13.0

Compare Source

=======

  • #​396: Added compatibility for PathDistributions originating
    from Python 3.8 and 3.9.

v4.12.0

Compare Source

=======

  • py-93259: Now raise ValueError when None or an empty
    string are passed to Distribution.from_name (and other
    callers).

v4.11.4

Compare Source

=======

  • #​379: In PathDistribution._name_from_stem, avoid including
    parts of the extension in the result.
  • #​381: In PathDistribution._normalized_name, ensure names
    loaded from the stem of the filename are also normalized, ensuring
    duplicate entry points by packages varying only by non-normalized
    name are hidden.

v4.11.3

Compare Source

=======

  • #​372: Removed cast of path items in FastPath, not needed.

v4.11.2

Compare Source

=======

  • #​369: Fixed bug where EntryPoint.extras was returning
    match objects and not the extras strings.

v4.11.1

Compare Source

=======

  • #​367: In Distribution.requires for egg-info, if requires.txt
    is empty, return an empty list.

v4.11.0

Compare Source

=======

  • bpo-46246: Added __slots__ to EntryPoints.

v4.10.1

Compare Source

=======

v4.10.0

Compare Source

=======

  • #​354: Removed Distribution._local factory. This
    functionality was created as a demonstration of the
    possible implementation. Now, the
    pep517 <https://pypi.org/project/pep517>_ package
    provides this functionality directly through
    pep517.meta.load <https://github.com/pypa/pep517/blob/a942316305395f8f757f210e2b16f738af73f8b8/pep517/meta.py#L63-L73>_.

v4.9.0

Compare Source

======

  • Require Python 3.7 or later.

v4.8.3

Compare Source

======

  • #​357: Fixed requirement generation from egg-info when a
    URL requirement is given.

v4.8.2

Compare Source

======

v4.8.1

Compare Source

======

  • #​348: Restored support for EntryPoint access by item,
    deprecating support in the process. Users are advised
    to use direct member access instead of item-based access::

    • ep[0] -> ep.name
    • ep[1] -> ep.value
    • ep[2] -> ep.group
    • ep[:] -> ep.name, ep.value, ep.group

v4.8.0

Compare Source

======

  • #​337: Rewrote EntryPoint as a simple class, still
    immutable and still with the attributes, but without any
    expectation for namedtuple functionality such as
    _asdict.

v4.7.1

Compare Source

======

  • #​344: Fixed regression in packages_distributions when
    neither top-level.txt nor a files manifest is present.

v4.7.0

Compare Source

======

  • #​330: In packages_distributions, now infer top-level
    names from .files() when a top-level.txt
    (Setuptools-specific metadata) is not present.

v4.6.4

Compare Source

======

  • #​334: Correct SimplePath protocol to match pathlib
    protocol for __truediv__.

v4.6.3

Compare Source

======

  • Moved workaround for #​327 to _compat module.

v4.6.2

Compare Source

======

  • bpo-44784: Avoid errors in test suite when
    DeprecationWarnings are treated as errors.

v4.6.1

Compare Source

======

  • #​327: Deprecation warnings now honor call stack variance
    on PyPy.

v4.6.0

Compare Source

======

  • #​326: Performance tests now rely on
    pytest-perf <https://pypi.org/project/pytest-perf>_.
    To disable these tests, which require network access
    and a git checkout, pass -p no:perf to pytest.

v4.5.0

Compare Source

======

  • #​319: Remove SelectableGroups deprecation exception
    for flake8.

v4.4.0

Compare Source

======

  • #​300: Restore compatibility in the result from
    Distribution.entry_points (EntryPoints) to honor
    expectations in older implementations and issuing
    deprecation warnings for these cases:

    • EntryPoints objects are once again mutable, allowing
      for sort() and other list-based mutation operations.
      Avoid deprecation warnings by casting to a
      mutable sequence (e.g.
      list(dist.entry_points).sort()).

    • EntryPoints results once again allow
      for access by index. To avoid deprecation warnings,
      cast the result to a Sequence first
      (e.g. tuple(dist.entry_points)[0]).

v4.3.1

Compare Source

======

  • #​320: Fix issue where normalized name for eggs was
    incorrectly solicited, leading to metadata being
    unavailable for eggs.

v4.3.0

Compare Source

======

  • #​317: De-duplication of distributions no longer requires
    loading the full metadata for PathDistribution objects,
    entry point loading performance by ~10x.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - 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 Mend Renovate. View repository job log here.

@codecov
Copy link

codecov bot commented Mar 18, 2023

Codecov Report

Patch and project coverage have no change.

Comparison is base (81797df) 92.64% compared to head (536d39a) 92.64%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #413   +/-   ##
=======================================
  Coverage   92.64%   92.64%           
=======================================
  Files          24       24           
  Lines         612      612           
=======================================
  Hits          567      567           
  Misses         45       45           
Flag Coverage Δ
unittests 92.64% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report in Codecov by Sentry.
📢 Do you have feedback about the report comment? Let us know in this issue.

@kitsuyui kitsuyui merged commit 9e4c9de into main Mar 19, 2023
@kitsuyui kitsuyui deleted the renovate/importlib-metadata-6.x-lockfile branch March 19, 2023 03:17
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant