Skip to content

Update setuptools requirement from >=80 to >=82.0.1#98

Merged
docktermj merged 2 commits into
mainfrom
dependabot/pip/setuptools-gte-82.0.1
Apr 13, 2026
Merged

Update setuptools requirement from >=80 to >=82.0.1#98
docktermj merged 2 commits into
mainfrom
dependabot/pip/setuptools-gte-82.0.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Apr 13, 2026

Updates the requirements on setuptools to permit the latest version.

Changelog

Sourced from setuptools's changelog.

v82.0.1

Bugfixes

  • Fix the loading of launcher manifest.xml file. (#5047)
  • Replaced deprecated json.__version__ with fixture in tests. (#5186)

Improved Documentation

  • Add advice about how to improve predictability when installing sdists. (#5168)

Misc

v82.0.0

Deprecations and Removals

  • pkg_resources has been removed from Setuptools. Most common uses of pkg_resources have been superseded by the importlib.resources <https://docs.python.org/3/library/importlib.resources.html>_ and importlib.metadata <https://docs.python.org/3/library/importlib.metadata.html>_ projects. Projects and environments relying on pkg_resources for namespace packages or other behavior should depend on older versions of setuptools. (#3085)

v81.0.0

Deprecations and Removals

  • Removed support for the --dry-run parameter to setup.py. This one feature by its nature threads through lots of core and ancillary functionality, adding complexity and friction. Removal of this parameter will help decouple the compiler functionality from distutils and thus the eventual full integration of distutils. These changes do affect some class and function signatures, so any derivative functionality may require some compatibility shims to support their expected interface. Please report any issues to the Setuptools project for investigation. (#4872)

v80.10.2

Bugfixes

  • Update vendored dependencies. (#5159)

Misc

... (truncated)

Commits
  • 5a13876 Bump version: 82.0.0 → 82.0.1
  • 51ab8f1 Avoid using (deprecated) 'json.version' in tests (#5194)
  • f9c37b2 Docs/CI: Fix intersphinx references (#5195)
  • 8173db2 Docs: Fix intersphinx references
  • 09bafbc Fix past tense on newsfragment
  • 461ea56 Add news fragment
  • c4ffe53 Avoid using (deprecated) 'json.version' in tests
  • 749258b Cleanup pkg_resources dependencies and configuration (#5175)
  • 2019c16 Parse ext-module.define-macros from pyproject.toml as list of tuples (#5169)
  • b809c86 Sync setuptools schema with validate-pyproject (#5157)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Resolves #5047
Resolves #5186
Resolves #5168
Resolves #4941
Resolves #5157
Resolves #5169
Resolves #5175
Resolves #3085
Resolves #4872
Resolves #5159
Resolves #5194
Resolves #5195

Updates the requirements on [setuptools](https://github.com/pypa/setuptools) to permit the latest version.
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v80.0.0...v82.0.1)

---
updated-dependencies:
- dependency-name: setuptools
  dependency-version: 82.0.1
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Apr 13, 2026
@dependabot dependabot Bot requested a review from a team as a code owner April 13, 2026 05:10
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Apr 13, 2026
@github-actions
Copy link
Copy Markdown

🤖 Claude Code Review

PR Code Review

Summary: This PR bumps the setuptools minimum version requirement from >=80 to >=82.0.1 in pyproject.toml (line 25). This is a routine automated dependency update (likely Dependabot).


Code Quality

  • Code style ✅ — Single-line change in a TOML config file; no style concerns.
  • No commented-out code ✅ — Not applicable.
  • Meaningful variable names ✅ — Not applicable.
  • DRY principle ✅ — Not applicable.
  • Defects / logic errors ✅ — The version specifier >=82.0.1 is valid and more specific than >=80. No logic errors or edge cases.
  • CLAUDE.md compliance ✅ — No concerns.

Testing

  • Unit/integration tests ✅ — Not applicable for a build-system dependency version bump.
  • Test coverage ✅ — Not applicable.

Documentation

  • README updated ✅ — Not needed.
  • API docs updated ✅ — Not applicable.
  • Inline comments ✅ — Not applicable.
  • CHANGELOG.md updated ⚠️ — The CHANGELOG.md has only a placeholder entry ([1.0.0] - yyyy-mm-dd). While a build-tooling version bump is minor, the project's changelog is unpopulated. This is a pre-existing condition, not introduced by this PR, so it's informational only.
  • Markdown formatting ✅ — Not applicable to this diff.

Security

  • No hardcoded credentials
  • Input validation ✅ — Not applicable.
  • Error handling ✅ — Not applicable.
  • No sensitive data in logs ✅ — Not applicable.
  • License files (.lic / AQAAAD strings) ✅ — None present.

Overall

Approved. This is a straightforward, low-risk automated dependency update. The change is appropriate and safe to merge.

Automated code review analyzing defects and coding standards

@github-actions
Copy link
Copy Markdown

🤖 Claude Code Review

Code Review

PR: Bump setuptools requirement from >=80 to >=82.0.1


Code Quality

  • Style guide: Single-line change to pyproject.toml, no style concerns.
  • No commented-out code: N/A
  • Meaningful variable names: N/A
  • DRY principle: N/A
  • Defects: No logic errors. The change is a straightforward minimum version bump for a build dependency. >=82.0.1 is a valid PEP 440 specifier and is more restrictive than the previous >=80, which is appropriate for a security/compatibility update.
  • CLAUDE.md: Not affected by this change.

Testing

  • Unit/integration tests: No new logic introduced; no tests required.
  • Test coverage: N/A — build dependency version change only.

Documentation

  • README: No update needed.
  • API docs: N/A
  • Inline comments: N/A
  • CHANGELOG.md: Should be verified — dependency bumps are typically noted. This appears to be a dependabot PR so a changelog entry may not be expected per project convention, but worth confirming.
  • Markdown formatting: N/A

Security

  • No hardcoded credentials: N/A
  • Input validation: N/A
  • Error handling: N/A
  • No sensitive data in logs: N/A
  • License files: None present.

Summary

This is a minimal, low-risk dependency version bump — likely driven by a security or compatibility fix in setuptools 82.0.1. No issues found. The change is correct and appropriate.

Verdict: APPROVED — no changes requested.

Automated code review analyzing defects and coding standards

@docktermj docktermj merged commit 2d153df into main Apr 13, 2026
14 checks passed
@docktermj docktermj deleted the dependabot/pip/setuptools-gte-82.0.1 branch April 13, 2026 13:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants