Skip to content

Update dependency packaging to v25 #123

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 19, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
packaging ==20.9 -> ==25.0 age adoption passing confidence

Release Notes

pypa/packaging (packaging)

v25.0

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.2...25.0

v24.2

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.1...24.2

v24.1

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@24.0...24.1

v24.0

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@23.2...24.0

v23.2

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@23.1...23.2

v23.1

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@23.0...23.1

v23.0

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@22.0...23.0

v22.0

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@21.3...22.0

v21.3

Compare Source

  • Add a pp3-none-any tag (#​311)
  • Replace the blank pyparsing 3 exclusion with a 3.0.5 exclusion (#​481, #​486)
  • Fix a spelling mistake (#​479)

v21.2

Compare Source

  • Update changelog entry for 21.1

Full Changelog: pypa/packaging@21.1...21.2

v21.1

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@21.0...21.1

v21.0

Compare Source

  • PEP 656: musllinux support (:issue:411)
  • Drop support for Python 2.7, Python 3.4 and Python 3.5.
  • Replace distutils usage with sysconfig (:issue:396)
  • Add support for zip files in parse_sdist_filename (:issue:429)
  • Use cached _hash attribute to short-circuit tag equality comparisons (:issue:417)
  • Specify the default value for the specifier argument to SpecifierSet (:issue:437)
  • Proper keyword-only "warn" argument in packaging.tags (:issue:403)
  • Correctly remove prerelease suffixes from ~= check (:issue:366)
  • Fix type hints for Version.post and Version.dev (:issue:393)
  • Use typing alias UnparsedVersion (:issue:398)
  • Improve type inference for packaging.specifiers.filter() (:issue:430)
  • Tighten the return type of canonicalize_version() (:issue:402)

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 was generated by Mend Renovate. View the repository job log.

Copy link

sourcery-ai bot commented Apr 19, 2025

Reviewer's Guide by Sourcery

This pull request updates the packaging dependency from version 20.9 to 25.0 by modifying the requirements.txt file.

Updated class diagram for the packaging library

classDiagram
  class packaging {
    <<Library>>
    +__version__: str
    +parse_version(version_string: str) Version
    +parse_requirement(requirement_string: str) Requirement
    +SpecifierSet
    +Version
    +Requirement
    +Marker
  }

  class Version {
    <<Abstract>>
    +__str__() str
    +__repr__() str
    +__hash__() int
    +__eq__(other: Version) bool
    +__lt__(other: Version) bool
    +__le__(other: Version) bool
    +__gt__(other: Version) bool
    +__ge__(other: Version) bool
  }

  class SpecifierSet {
    +__init__(specifiers: str | None = None, prereleases: bool | None = None)
    +__str__() str
    +__iter__() Iterator[Specifier]
    +__len__() int
    +contains(version: Version, prereleases: bool | None = None) bool
    +filter(versions: Iterable[Version], prereleases: bool | None = None) Iterator[Version]
  }

  class Requirement {
    +name: str
    +extras: Set[str]
    +specifier: SpecifierSet
    +marker: Marker | None
    +url: str | None
    +__str__() str
  }

  class Marker {
    +evaluate(environment: Dict[str, str]) bool
  }

  packaging -- Version
  packaging -- SpecifierSet
  packaging -- Requirement
  packaging -- Marker

  note for packaging "Updated from 20.9 to 25.0"
Loading

File-Level Changes

Change Details Files
The pull request updates the packaging dependency from version 20.9 to 25.0.
  • Updated the version of the packaging dependency in requirements.txt.
requirements.txt

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. Here's why:

  • It seems to have been created by a bot (hey, renovate[bot]!). We assume it knows what it's doing!
  • We don't review packaging changes - Let us know if you'd like us to change this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants